美文网首页
学习总结flutter

学习总结flutter

作者: 学学学q | 来源:发表于2020-04-23 14:57 被阅读0次

    学习总结

    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(),
      )
    

    相关文章

      网友评论

          本文标题:学习总结flutter

          本文链接:https://www.haomeiwen.com/subject/ixybihtx.html