[FlutterLogo(),//左对齐Expanded(child:SizedBo..._flutter row 图片居右">
赞
踩
1.mainAxisAlignment
- new Row(
-
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
-
- children: [
-
- new Text("left"),
-
- new Text("right")
-
- ]
-
- );
2.Expanded
- Row(
-
- children: <Widget>[
-
- FlutterLogo(),//左对齐
-
- Expanded(child: SizedBox()),//自动扩展挤压
-
- FlutterLogo(),//右对齐
-
- ],
-
- );
3.Spacer
- Row(
-
- children: <Widget>[
-
- FlutterLogo(),
-
- Spacer(),
-
- FlutterLogo(),
-
- ],
-
- );
4.Flexible
- Row(
-
- children: <Widget>[
-
- FlutterLogo(),
-
- Flexible(fit: FlexFit.tight, child: SizedBox()),
-
- FlutterLogo(),
-
- ],
-
- );
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。