Answers for "how to change the size of elevated button circular in flutter"

2

circular elevated button flutter

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

elevated button size flutter

ElevatedButton(
    style: ElevatedButton.styleFrom(
    minimumSize: const Size(200, 50),
    maximumSize: const Size(200, 50),
    ),
onPressed: () {},
child: Text('ElevatedButton')),
Posted by: Guest on September-08-2021

Code answers related to "how to change the size of elevated button circular in flutter"

Browse Popular Code Answers by Language