Answers for "flutter how to cercule container"

5

circle container flutter

Container(
	height: 300,
    width: 300,
    decoration: BoxDecoration(
                 border: Border.all(
                 color: Colors.red[500],
                	),
                 shape: BoxShape.circle,
               ),
    child: ...,
    ),
Posted by: Guest on January-25-2021

Code answers related to "flutter how to cercule container"

Browse Popular Code Answers by Language