-1

enter image description here

How to design the application list in the picture? Use ListView or Column?

Huangby
  • 11
  • 3

1 Answers1

0

You can create the layout like this.

Column(
 children:[
   BannerSectionHere(),
   ...List.generate(3, (index){
     return Row(
      children: [
       Container(child:Image.network()),
       Column(
        children: [
          Text("Title text here"),
          Text("SubTitle text here"),
        ]
       )
      ]
    );
   }
 ]
)
Kaushik Chandru
  • 15,510
  • 2
  • 12
  • 30