方式一:使用sizebox保持间距
SizedBox(height: 50), // 50高度
Row(
children: <Widget>[
Text("1"),
SizedBox(height: 50), // 50高度
Text("2"),
],
)
方式二:使用Wrap并指定spacing
Wrap(
spacing: 100, // set spacing here
children: <Widget>[
Text("1"),
Text("2"),
],
)
方式三:使用Spacer填充尽可能大的空间
Row(
children: <Widget>[
Text("1"),
Spacer(), // use Spacer
Text("2"),
],
)
网友评论