skip to Main Content

Custom Ui using flutter

How to make this UI, Row widget with 1st children as curved line on left 2nd child as text 3rd child as line which will be curved at right . for image reference click here Tried custom painter but i…

VIEW QUESTION

Create custom shape in flutter

I'm working on a Flutter project and I need to create a custom shape that looks like the one shown below: I've attempted to use fluttershapemaker, but I couldn't quite achieve the exact shape I need. I've heard about the…

VIEW QUESTION

Flutter programing svg design

I designed a simple svg into this website and i'll to try programing that in flutter I have implemented the code using this approach: class AppbarBackgroundPainter extends CustomPainter { final Color color; AppbarBackgroundPainter(this.color); @override void paint(Canvas canvas, Size size) {…

VIEW QUESTION

Create spiral in flutter

I want to create a spiral in flutter which will have a dynamic fill, something like shown below. One way to create is by using multiple semi-circles, but is there a better way to achieve this? The dynamic fill is…

VIEW QUESTION
Back To Top
Search