Skip to content

Instantly share code, notes, and snippets.

@victorfrankenstein245
victorfrankenstein245 / container-bg-image.dart
Created October 7, 2020 12:43 — forked from xxGus/container-bg-image.dart
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,
),