#Flutterの1行で複数の要素を左寄せと右寄せにする
IconとTextとButtonで以下のような配置にしたいときに少し迷ったのでメモ
ContainerでひとかたまりにしてからRowなどで配置する
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, // これで両端に寄せる
children: <Widget>[
Container(
child: Row(
children: <Widget>[
Icon(Icons.access_time),
Text(
"alpha",
style: TextStyle(
color: Colors.black,
fontSize: 25,
fontWeight: FontWeight.bold),
),
],
),
),
RaisedButton(
onPressed: null, // 押した時の処理
color: Colors.blue,
child: const Text(
'更新',
style: TextStyle(
color:Colors.white,
fontSize: 20.0
),),
)
]);