这很适合我
Positioned(
bottom: 0.0,
child: Container(
width: MediaQuery.of(context).size.width,
height: 40,
color: Colors.blue,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
ButtonTheme(
minWidth: 100,
height: 40,
child: RaisedButton(
color: Colors.purple,
padding: EdgeInsets.all(0),
child: SizedBox(
width: 100,
child: Text(
'SKIP',
style: TextStyle(
color: Colors.white,
fontSize: 18,
),
textAlign: TextAlign.left,
),
),
onPressed: () {},
),
),
ButtonTheme(
minWidth: 100,
height: 40,
child: RaisedButton(
color: Colors.purple,
padding: EdgeInsets.all(0),
child: SizedBox(
width: 100,
child: Text(
'Next',
style: TextStyle(
color: Colors.white,
fontSize: 18,
),
textAlign: TextAlign.right,
),
),
onPressed: () {},
),
),
],
),
),
),