現状イメージ画像のようになっているのですが、ダイアログ下部のflatbutton二つを左右にいい感じに離して表示したいのですがなかなかうまく行きません。
RowにcrossAxisAlignment: MainAxisAlignment.spaceBetween
やら色々試してみたのですが効果がないようで、何か良い方法を知っている方がいらっしゃれば教えていただけないでしょうか?
Gitより挙げております
https://github.com/nannantown/flutter_lang
return AlertDialog( title: Text("コースのロックを解除する!コースのロックを解除する!"), actions: <Widget>[ // usually buttons at the bottom of the dialog Center( child: Row( children: <Widget>[ ButtonTheme( minWidth: 20.0, child: FlatButton( color: Colors.blueGrey, child: Text("CMを見る"), onPressed: () { unlockedList.unlock(widget.course.id); print(unlockedList.isUnlocked(widget.course.id)); Navigator.of(context).pop(); }, ), ), FlatButton( color: Colors.blueAccent, child: Text("500円でロックを一括解除"), onPressed: () { unlockedList.unlockAll(); Navigator.of(context).pop(); }, ), ], ), ), ], );
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/05 14:48