Checkbox

作者: 不二客 | 来源:发表于2020-08-31 14:02 被阅读0次

    Checkbox

    const Checkbox({
        Key key,
        @required this.value,// 是否选中此复选框。
        this.tristate = false, //三种状态 tristate = true时 value可以为null 
        @required this.onChanged, // ValueChanged<bool> 状态改变时 回调
        this.activeColor,//选中时的背景颜色
        this.checkColor,//选中时对号的颜色
        this.focusColor,//具有输入焦点时复选框的[Material]的颜色。
        this.hoverColor,//指针悬停在复选框上时复选框的[Material]的颜色。
        this.materialTapTargetSize, //点击区域尺寸,padded:向四周扩展48px区域;shrinkWrap:控件区域
        this.visualDensity, //用户界面组件的视觉密度。  standard  comfortable  compact
        this.focusNode,
        this.autofocus = false,
      })
    

    相关文章

      网友评论

          本文标题:Checkbox

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