I have a very specific use case and I can't find a way to achieve that in Flutter.
Let's say we have a widget (could be image, container, svg etc.) like this:
Now I want to bend the widget with bottom as the changing axis like this:
And like this:
- But I can't use custom paint to draw the widget since I want it to be an svg image which I cannot accurately draw in custom paint,
- Using Clip path will crop the widget,
Do you guys have any ideas on how to achieve this in Flutter?