Skip to content

Instantly share code, notes, and snippets.

@xxGus
Last active April 27, 2021 19:33
Show Gist options
  • Save xxGus/ec7b71995714ea65949ae9437f082eec to your computer and use it in GitHub Desktop.
Save xxGus/ec7b71995714ea65949ae9437f082eec to your computer and use it in GitHub Desktop.
Flutter Container background image
class BaseLayout extends StatelessWidget{
@override
Widget build(BuildContext context){
return Scaffold(
body: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/images/bulb.jpg"),
fit: BoxFit.cover,
),
),
child: null /* add child content here */,
),
);
}
}
@victorfrankenstein245
Copy link

thanks.. was helpful

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment