🔥
【Flutter】Row, ColumnでSpacingを使いたい!
【Flutter】Row, ColumnでSpacingを使いたい!
Wrapを使用すると、spacingを利用できる
Wrap(
spacing: 20, // to apply margin in the main axis of the wrap
runSpacing: 20, // to apply margin in the cross axis of the wrap
children: <Widget>[
Text('child 1'),
Text('child 2')
]
)
Column to Wrap
Wrap(
direction: Axis.vertical,
spacing: 20,
runSpacing: 20,
children: <Widget>[
Text('child 1'),
Text('child 2')
]
)
ref
Discussion