Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

How to create a small circular dot in FLutter code example

Container(
                          width: 5,
                          height: 5,
                          decoration: BoxDecoration(
                            shape: BoxShape.circle,
                            color: Colors.deepPurpleAccent,
                          ),
                        ),
 
PREVIOUS NEXT
Tagged: #How #create #small #circular #dot #FLutter #code
ADD COMMENT
Topic
Name
3+7 =