zoukankan      html  css  js  c++  java
  • flutter Container

    总结:

    Container  — 类似于 html 的div 或者是 OC 的view

    alignment Container 区域范围内的所有控件的对齐方式

     width  Container 区域宽度

    height Container 区域高度

    color : colors.xxx 区域颜色

    padding:const EdgeInsets.all() 内间距 距离上下左右所有相同距离

    margin: const EdgeInset.fromLTRB() 外间距 距离上下左右所有不同距离

    区域渐变 

    decoration : new BoxDecoration {

    gradient : const LinearGradient{

    colors:[颜色集合]

    },

    border:Border.all(xx,color:Colors.red),//外边框宽度和颜色

    }

  • 相关阅读:
    002-mybatis主配置文件
    001-mybatis框架
    mybatis学习
    tcp连接与释放
    浏览器输入url的全过程
    设备
    读写分离(三)
    读写分离(二)
    读写分离(一)
    主从复制(三)
  • 原文地址:https://www.cnblogs.com/pp-pping/p/12157689.html
Copyright © 2011-2022 走看看