I am working on a flutter project. I have loaded an image and I want it to fill up the body. After reading the documentation I came up with this:
void main() => runApp(MaterialApp(
home : Scaffold(
appBar: AppBar(
title: Center(
child: Text("I am rich"),
),
backgroundColor: Colors.amberAccent,
),
backgroundColor: Colors.purple,
body: Image(
fit: BoxFit.cover,
image: NetworkImage('https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQWqFc0Y7fRegMPpHoqNmD-hdba-3Zk_ttQQw&usqp=CAU'),
),
)
)
);
But it does not seem to work. Please help
You can copy paste run full code below
You can directly set
width
andheight
towindow.physicalSize.width
andwindow.physicalSize.height
And you can use
BoxFit.fill
, see effect belowworking demo
full code