I am trying to set a background image for the home page. I am getting the image place from start of the screen and filling the width but not the height. Am I missing someth
You can use Stack to make the image stretch to the full screen.
Stack(
children:
[
Positioned.fill( //
child: Image(
image: AssetImage('assets/placeholder.png'),
fit : BoxFit.fill,
),
),
...... // other children widgets of Stack
..........
.............
]
);
Note: Optionally if are using a Scaffold, you can put the Stack inside the Scaffold with or without AppBar according to your needs.