Как прижать картинку к низу? flutter
Как мне прижать картинку к низу вплотную?
Scaffold(
body: SafeArea(
// bottom: false,
maintainBottomViewPadding: false,
child: Column(
children: <Widget>[
Text('Settings'),
Text('Help'),
Text('Privacy Policy'),
Text('Terms of Use'),
Text('Support'),
Padding(
padding: const EdgeInsets.all(0.0),
child: Container(
height: 638.57,
width: 375,
decoration: BoxDecoration(
image: DecorationImage(
alignment: Alignment(0, 0),
image: AssetImage(Images.background_1),
fit: BoxFit.cover
),
),
),
),
],
),
),
);
