学习总结flutter

2020-04-23  本文已影响0人  学学学q

学习总结

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(),
  )
上一篇下一篇

猜你喜欢

热点阅读