Answers for "flutter material border radius"

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
3

flutter border radius

borderRadius: BorderRadius.all(Radius.circular(5.0))
Posted by: Guest on October-14-2020

Code answers related to "flutter material border radius"

Browse Popular Code Answers by Language