Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

How to create a round CheckBox in Flutter

shape: CircleBorder(), // circle checkbox
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10.0)), // circle checkbox
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5.0)), // rounded corner checkbox
shape: RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(5.0))), // rounded corner checkbox 
 
PREVIOUS NEXT
Tagged: #How #create #CheckBox #Flutter
ADD COMMENT
Topic
Name
4+6 =