Skip to content

Instantly share code, notes, and snippets.

View ratiebareeng's full-sized avatar

ratie bareeng ratiebareeng

  • 04:57 (UTC +02:00)
View GitHub Profile
@xxGus
xxGus / container-bg-image.dart
Last active September 11, 2024 09:34
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,
),