Flutter开发之——基本组件-Button

2024-06-04 5178阅读

自定义Material Button使用RawMaterialButton

2.3 单纯图标

  • IconButton

2.4 下拉按钮

  • DropdownButton

2.5 悬浮按钮

  • FloatingActionButton

三 按钮常用方法


flutter中的Button基本上都是继承MaterialButton,先来看看MaterialButton中的属性

const MaterialButton({

Key key,

@required this.onPressed, //按下事件

this.onLongPress, //长按事件

this.onHighlightChanged, //水波纹高亮变化回调

this.mouseCursor, //鼠标指针的光标进入或悬停在此按钮的[InkWell]上时。

this.textTheme, //按钮的主题

this.textColor, //文字的颜色

this.disabledTextColor, //按钮禁用时候文字的颜色

this.color, //按钮的背景颜色

this.disabledColor, //按钮禁用的背景颜色

this.focusColor, //获取焦点的颜色

this.hoverColor, //悬停颜色

this.highlightColor, //点击或者toch控件高亮的时候显示在控件上面,水波纹下面的颜色

this.splashColor, //水波纹的颜色

this.colorBrightness, //按钮主题高亮

this.elevation, //按钮下面的阴影

this.focusElevation, //获取焦点的阴影

this.hoverElevation, //悬停的阴影

this.highlightElevation, //高亮时候的阴影

this.disabledElevation, //未设置点击时的阴影高度

this.padding, //内边距

this.visualDensity, // 按钮布局的紧凑程度

this.shape, //设置形状

this.clipBehavior = Clip.none,

this.focusNode, //在Flutter使用FocusNode来捕捉监听焦点获取与失去

this.autofocus = false,

this.materialTapTargetSize, //是配置组件点击区域大小的属性,很多组件都有

this.animationDuration, //[shape]和[elevation]的动画更改的持续时间。

this.minWidth, //最小宽度

this.height, //高度

this.enableFeedback = true, // 检测到的手势是否应提供声音和/或触觉反馈。例如,在Android上

// ,点击会产生咔哒声,启用反馈后,长按会产生短暂的振动。通常,组件默认值为true。

this.child, //子view

}) : assert(clipBehavior != null),

3.1 属性

| 编号 | 属性 | 说明 |

| :-: | :-: | :-: |

| 1 | onPressed | 点击事件监听,传 null 表示按钮禁用 |

| 2 | onHighlightCh


    免责声明:我们致力于保护作者版权,注重分享,被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理! 图片声明:本站部分配图来自人工智能系统AI生成,觅知网授权图片,PxHere摄影无版权图库和百度,360,搜狗等多加搜索引擎自动关键词搜索配图,如有侵权的图片,请第一时间联系我们,邮箱:ciyunidc@ciyunshuju.com。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!

    目录[+]