I have a checkbox added to my UI in Flutter app, I can see checkbox color or active color property but can't find any option to change border color of checkbox , which is usually black.
Whats the provision or tweak to change the border color ?
Checkbox(value: false, tristate: false, onChanged: () {}); ↓ Theme( data: ThemeData(unselectedWidgetColor: Colors.red), child: Checkbox(value: false, tristate: false, onChanged: (bool value) {})); No onChanged, then the border will be grey(disabled).
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