I have an image that doesn\'t match the aspect ratio of my device\'s screen. I want to stretch the image so that it fully fills the screen, and I don\'t want to crop any par
Visit https://youtu.be/TQ32vqvMR80 OR
For example if parent contrainer has height: 200, then
Container( decoration: BoxDecoration( image: DecorationImage( image: NetworkImage('url'), fit: BoxFit.cover, ), ), ),