Answers for "shape in elevated button flutter"

2

raisedbutton shape flutter

shape: RoundedRectangleBorder(
  borderRadius: BorderRadius.circular(18.0),
  side: BorderSide(color: Theme.of(context).primaryColor),
),
Posted by: Guest on February-08-2021
2

circular elevated button flutter

style: ElevatedButton.styleFrom(
	shape: CircleBorder(),
),
Posted by: Guest on July-07-2021

Code answers related to "shape in elevated button flutter"

Browse Popular Code Answers by Language