我需要两个容器,一个在屏幕右侧,另一个在屏幕左侧。
home: Scaffold(
backgroundColor: Colors.teal,
body: SafeArea(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.end,
children: <Widget>[
Container(
width: double.infinity,
),
Expanded(
child: Container(
width: 100.00,
color: Colors.red,
child: Container(
width: 100.00,
color: Colors.blue,
目前,我有一个容器对准了屏幕的右侧。
child: Container(
width: 100.00,
color: Colors.red,
. 然而,我无法找到将第二个容器对齐到屏幕另一侧的方法。
child: Container(
width: 100.00,
color: Colors.blue,