0
ボタンが唯一その自然幅を占有するためにどのよう一番小さな子供を箱に入れる方法は?
new ListView(
children: <Widget>[
new RaisedButton(child: const Text('1')),
],
)
考えてみましょうか?
ボタンが唯一その自然幅を占有するためにどのよう一番小さな子供を箱に入れる方法は?
new ListView(
children: <Widget>[
new RaisedButton(child: const Text('1')),
],
)
考えてみましょうか?
RaisedButton
をにラップすることを検討してください。ボタンを本来の幅にすることに加えて、を使用して、mainAxisAlignment
コンストラクタ引数を使用してボタンを水平に配置することができます。例えばボタンを右揃えにするには、次のようにします:
new ListView(
children: <Widget>[
new Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
new RaisedButton(
child: const Text('1'),
onPressed:() { /* ... */ },
),
],
),
],
),