-
-
Save mohamad-supangat/674d14c1434f77ebdf46589abc416add 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