Created
July 11, 2020 14:26
-
-
Save diamantidis/b10dd4b0df2f4efe2166c4f2aa3fd655 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension WidgetModifier on Widget { | |
Widget padding([EdgeInsetsGeometry value = const EdgeInsets.all(16)]) { | |
return Padding( | |
padding: value, | |
child: this, | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment