Answers for "raised button flutter rounded"

4

rounded button flutter

FlatButton(
              color: Colors.red,
              shape: RoundedRectangleBorder(
                  borderRadius: BorderRadius.circular(18.0)),
              child: new Text('round button'),
              onPressed: () {},
            ),
Posted by: Guest on June-30-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 "raised button flutter rounded"

Code answers related to "Dart"

Browse Popular Code Answers by Language