Skip to content

Instantly share code, notes, and snippets.

@houssenedao
Last active May 29, 2019 11:47
Show Gist options
  • Save houssenedao/80b248779b345001249295d83789b6ea to your computer and use it in GitHub Desktop.
Save houssenedao/80b248779b345001249295d83789b6ea to your computer and use it in GitHub Desktop.
Flutter padding only
...
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Padding(
padding: const EdgeInsets.only(top: 12.0),
child: Text('Widget Padding'),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment