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
Inside your Stack, you should wrap your background widget in a Positioned.fill.
background
return new Stack( children: [ new Positioned.fill( child: background, ), foreground, ], );