Created
May 17, 2022 00:40
-
-
Save maodo/5a67302dd557ec25c4c0017034c00181 to your computer and use it in GitHub Desktop.
This allows you to set an image as a background in flutter scaffold widget
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
return Scaffold( | |
body: Container( | |
decoration: BoxDecoration( | |
image: DecorationImage( | |
image: AssetImage('images/background.png'), | |
fit: BoxFit.cover), | |
),),) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment