Reputation: 636
Here's the git repo https://github.com/ianvillamia/elements/blob/master/lib/Screens/Authentication/landing.dart
What I've done: Set the width of the container to its max size using this width: MediaQuery.of(context).size.width but it still has some padding/spaces How do I remove this? padding. THANKS!
Upvotes: 0
Views: 308
Reputation: 573
At line 15 of your code, you have a Padding
widget that wrap your Column
widget. So, all the children of the column have a padding.
Solution 1
Delete your padding widget
Solution 2
Keep your padding widget but don't add horizontal padding and only have vertical padding.
Padding(
padding: EdgeInsets.symmmetric(vertical: 15.0),
child: Column()
)
Upvotes: 1