Home > Back-end >  Drawing shape - flutter
Drawing shape - flutter

Time:04-03

I'm trying to create a shape using flutter. shape-1 shape-2

I tried to use some solutions but it didn't work. can anyone help thanks

CodePudding user response:

You can create the shapes using the CustomPaint widget together with BezierCurves. Code in action

Note on Accessibility

Different screen sizes and system preferences on text size might make this design hard to accommodate for, especially for getting the text sized well with this right aligned style, so be aware of this.

  • Related