Answers for "how to create circles in flutter"

3

circle dot in flutter

Container(
                          width: 5,
                          height: 5,
                          decoration: BoxDecoration(
                            shape: BoxShape.circle,
                            color: Colors.deepPurpleAccent,
                          ),
                        ),
Posted by: Guest on September-03-2021
0

circles aaround icons in flutter

CircleAvatar(
               backgroundColor: Colors.white,//back ground colors
               .withOpacity(0.3) //opectional give opacity of background
               radius: 30,
              child: Icon(Icons.navigate_next,//iconstype
               size: 70, //set the isze or icons
             color: Colors.blue //colors you want give
                 ),
               ),// method
Posted by: Guest on March-04-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language