Answers for "bullet circle icon flutter"

C
4

circle around icon flutter

CircleAvatar(
   backgroundColor: Colors.white,
   radius: 30,
   child: Icon(Icons.add),
),
Posted by: Guest on August-18-2020
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 "C"

Browse Popular Code Answers by Language