Answers for "border round icon flutter"

2

round border container flutter

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

make border rounded flutter

decoration: BoxDecoration(
  borderRadius: BorderRadius.circular(10)
),
Posted by: Guest on September-20-2021

Code answers related to "border round icon flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language