Skip to content

Instantly share code, notes, and snippets.

@maodo
Created May 17, 2022 00:40
Show Gist options
  • Save maodo/5a67302dd557ec25c4c0017034c00181 to your computer and use it in GitHub Desktop.
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
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