Published
- 1 min read
elevated button size flutter
The solution for this is noted below
elevated button size flutter
Solution
ElevatedButton(
style: ElevatedButton.styleFrom(
minimumSize: const Size(200, 50),
maximumSize: const Size(200, 50),
),
onPressed: () {},
child: Text('ElevatedButton')),
Try other methods by searching on the site. That is if this doesn’t work