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 DecoratedBox.
DecoratedBox
@override Widget build(BuildContext context) { return DecoratedBox( decoration: BoxDecoration( image: DecorationImage(image: AssetImage("your_asset"), fit: BoxFit.cover), ), child: Center(child: FlutterLogo(size: 300)), ); }
Output: