Home > Enterprise >  How to design the layout in listview (Flutter)
How to design the layout in listview (Flutter)

Time:10-28

I am beginner in flutter. I am trying to design this screen in flutter but I am not able to do it. Please help me.

This is the design:

enter image description here

CodePudding user response:

You can use a ListTile inside a list view builder. The leading property would be a Container with ClipRect. You can then use Text widgets for title and subtitle.

CodePudding user response:

You will need to use CustomPainter .

Check this online tool which generates the code of the shapes you draw. It's a good starting point for custom shapes and how the code works.

  • Related