Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Created December 8, 2019 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiomsr/503e381974ea13825012c6479e0c1578 to your computer and use it in GitHub Desktop.
Save fabiomsr/503e381974ea13825012c6479e0c1578 to your computer and use it in GitHub Desktop.
Widget _createHeader() {
return DrawerHeader(
margin: EdgeInsets.zero,
padding: EdgeInsets.zero,
decoration: BoxDecoration(
image: DecorationImage(
fit: BoxFit.fill,
image: AssetImage('res/images/drawer_header_background.png'))),
child: Stack(children: <Widget>[
Positioned(
bottom: 12.0,
left: 16.0,
child: Text("Flutter Step-by-Step",
style: TextStyle(
color: Colors.white,
fontSize: 20.0,
fontWeight: FontWeight.w500))),
]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment