Answers for "how to use round border 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
2

round border button flutter

RawMaterialButton(
  onPressed: () {},
  elevation: 2.0,
  fillColor: Colors.white,
  child: Icon(
    Icons.pause,
    size: 35.0,
  ),
  padding: EdgeInsets.all(15.0),
  shape: CircleBorder(),
)
Posted by: Guest on January-21-2021
1

make border rounded flutter

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

How to round container corners in flutter

decoration: BoxDecoration(borderRadius: BorderRadius.all(Radius.circular(10)))
Posted by: Guest on August-09-2021

Code answers related to "how to use round border flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language