Answers for "flutter create cicle conatiner"

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
1

flutter circular container

Container(
  decoration: BoxDecoration(
    border: Border.all(
      color: Colors.red[500],
    ),
    borderRadius: BorderRadius.all(Radius.circular(20))
  ),
  child: ...
)
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language