Last active
September 11, 2024 09:34
-
-
Save xxGus/ec7b71995714ea65949ae9437f082eec to your computer and use it in GitHub Desktop.
Flutter Container background image
This file contains 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
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 */, | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks.. was helpful