remove padding from button

This commit is contained in:
yaso-meth 2024-07-30 13:38:43 +02:00
parent f5ea3531fb
commit 899593dfed

View file

@ -17,7 +17,7 @@ class MyButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(25.0),
padding: const EdgeInsets.symmetric(vertical: 25.0),
child: ElevatedButton(
onPressed: onTap,
style: ElevatedButton.styleFrom(