Created
December 8, 2019 11:01
-
-
Save fabiomsr/503e381974ea13825012c6479e0c1578 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
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