Answers for "how to do continer as circle view in flutter"

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

Code answers related to "how to do continer as circle view in flutter"

Browse Popular Code Answers by Language