How to design the application list in the picture? Use ListView or Column?
Asked
Active
Viewed 25 times
-1
-
I think it is using CustomScrollView, Can you include what you've done far? – Md. Yeasin Sheikh Jul 26 '22 at 07:03
1 Answers
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