remove padding from button
This commit is contained in:
parent
f5ea3531fb
commit
899593dfed
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ class MyButton extends StatelessWidget {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.all(25.0),
|
padding: const EdgeInsets.symmetric(vertical: 25.0),
|
||||||
child: ElevatedButton(
|
child: ElevatedButton(
|
||||||
onPressed: onTap,
|
onPressed: onTap,
|
||||||
style: ElevatedButton.styleFrom(
|
style: ElevatedButton.styleFrom(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue