Skip to content

Instantly share code, notes, and snippets.

@diamantidis
Created July 11, 2020 14:26
Show Gist options
  • Save diamantidis/b10dd4b0df2f4efe2166c4f2aa3fd655 to your computer and use it in GitHub Desktop.
Save diamantidis/b10dd4b0df2f4efe2166c4f2aa3fd655 to your computer and use it in GitHub Desktop.
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