Is it possible to take a LinearProgressIndicator()
component in flutter and have all the edges be rounded instead of square without using any libraries?
You need to wrap it with ClipRRect
ClipRRect(
borderRadius: BorderRadius.circular(4),
child: LinearProgressIndicator(),
)
ClipRRect class documentation on flutter.dev
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With