Answers for "how to circular border of elevated button flutter"

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

Code answers related to "how to circular border of elevated button flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language