学习总结
1.善于使用SizeBox进行布局
2.helperText相当于输入框下面的提示注意文字
3.去除右上角debug标签 debugShowCheckedModeBanner=false
4.设置textField的背景填充色,在InputDecoration
中设置:
fillColor: Color(0xffdcdcdc),
filled: true,
5.显示隐藏控件Offstage
6.让Image的图片内容填充
*已知宽高直接设置image的宽高
*外面嵌套BoxConstraints,给Image加约束,让它填充父布局。
ConstrainedBox(
child: Image.asset(AssetImages.start2, fit: BoxFit.cover,),
constraints: new BoxConstraints.expand(),
)
网友评论