Answers for "borderRadius: BorderRadius.circular(40),"

1

how to set button radius in flutter

RaisedButton(  shape: StadiumBorder(),  onPressed: () {},  child: Text("Button"),)
Posted by: Guest on August-29-2020
0

how to change the shape of a buton in flutter to cicular

RawMaterialButton(
  ...,
  shape: CircleBorder(),
)
Posted by: Guest on June-16-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language