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:
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.