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
We can use Container and mark its height as infinity
body: Container( height: double.infinity, width: double.infinity, child: FittedBox( fit: BoxFit.cover, child: Image.network( 'https://cdn.pixabay.com/photo/2016/10/02/22/17/red-t-shirt-1710578_1280.jpg', ), ), ));
Output: