elevated button size flutter
ElevatedButton(
style: ElevatedButton.styleFrom(
minimumSize: const Size(200, 50),
maximumSize: const Size(200, 50),
),
onPressed: () {},
child: Text('ElevatedButton')),
elevated button size flutter
ElevatedButton(
style: ElevatedButton.styleFrom(
minimumSize: const Size(200, 50),
maximumSize: const Size(200, 50),
),
onPressed: () {},
child: Text('ElevatedButton')),
how to change the height of elevated button fluttter
ElevatedButton(
style: ElevatedButton.styleFrom(
minimumSize: Size(150, 48), // takes postional arguments as width and height
),
),
OR
// Wrap the ElevatedButton inside a SizedBox or a Container and set your with and height
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us