How to design the application list in the iphone tip application

27 Views Asked by At

enter image description here

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

1

There are 1 best solutions below

0
Kaushik Chandru On

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"),
        ]
       )
      ]
    );
   }
 ]
)