I really don,t know how to create a parallelogram shape container in a flutter. I also found the flutter library for this but I can’t use it because this is not supported by null safety.
For a shape like this you need to use CustomPainter for details on how to use it you can refer to this.
You can also use a website like flutter shape maker for the same thing but to make it easier you can draw your shape and it’ll auto generate the code for you.
2
Answers
For a shape like this you need to use
CustomPainter
for details on how to use it you can refer to this.You can also use a website like flutter shape maker for the same thing but to make it easier you can draw your shape and it’ll auto generate the code for you.
You can use
transform
withskewX
for this.