Flutter 基础控件 Button Widget

Flutter 基础控件 Button Widget

BackButton

  • BackButton是一个material风格的返回按钮,本身是一个IconButton,点击时默认执行Navigator.maybePop即如果路由栈有上一页则返回到上一页。
 BackButton(color: Colors.orange),

CloseButton

  • CloseButton是一个material风格的关闭按钮,本身是一个IconButton,点击时默认执行Navigator.maybePop即如果路由栈有上一页则返回到上一页。
CloseButton()

FlatButton

  • FlatButton :扁平化的按钮,继承自MaterialButton
  • semanticsLabel 相当于tips 控件描述
 ButtonBar(
    children: <Widget>[
      FlatButton(
        onPressed: () {},
        child: Text(
          "FlatButton",
          semanticsLabel: "FlatButton 1",
        ),
      ),
      FlatButton(
        onPressed: () {},
        child: Text(
          "Disabled",
          semanticsLabel: "DisableButton 2",
        ),
      )
    ],
  ),

FlatButton.icon

  • 带图标
  FlatButton.icon(
      onPressed: null,
      icon: const Icon(Icons.add_circle_outline, size: 18),
      label: const Text(
        "FlatButton",
        semanticsLabel: 'FlatButton 3',
      )),
  FlatButton.icon(
      onPressed: null,
      icon: const Icon(Icons.add_circle_outline_sharp, size: 18),
      label: const Text(
        "Disabled 2",
        semanticsLabel: 'DisableButton 4',
      )),
image.png

OutlineButton

  • OutlineButton :带边框的按钮,继承自MaterialButton
 OutlineButton(
    onPressed: () {},
    child: Text('data'),
  ),

OutlineButton.icon

  OutlineButton.icon(
      onPressed: null,
      icon: Icon(Icons.add, size: 25),
      label: Text(
        "Outline Button",
        semanticsLabel: "Outline Button 1",
      )),
  OutlineButton.icon(
    disabledTextColor: Colors.orange,
      onPressed: null,
      icon: Icon(Icons.add, size: 25),
      label: Text(
        "Disable Button",
        semanticsLabel: "Disable Button 2",
      )),

RaisedButton

  • 继承自MaterialButton,所以MaterialButton中的大多数属性这边都能用,且效果一致
  
  (
    onPressed: null,
    child: Text("Raise Button"),
  ),
  RaisedButton(
    disabledTextColor: Colors.tealAccent,
    onPressed: null,
    child: Text("Disabled Button"),
  ),

RaisedButton.icon

  • 带图标
  RaisedButton.icon(
    onPressed: null,
    icon: const Icon(
      Icons.add_circle,
      size: 18,
    ),
    label: Text("Raise Button"),
  ),
  RaisedButton.icon(
    disabledTextColor: Colors.amber,
    icon: const Icon(
      Icons.add_alarm,
      size: 18,
    ),
    onPressed: null,
    label: Text("Disabled Button"),
  ),
image.png

MaterialButton

  • onPressed: 按下之后松开的回调,也就是所谓的点击事件。其实是当用户手抬起来时的动作
  • onHighlightChanged: onPressed!=null 的时候可以看出 相当于用户按下时(高亮) 或者 松开时(不高亮)的监听。
  • textColor: 里面文本的颜色
  • disabledTextColor: 当状态为 disable的时候 文本的颜色,onpress=null 为disable
    注意点 在这里无效 在它子类有效(RaisedButton ,FlatButton ,OutlineButton )
  • color: // 当是 enable (onpress != null) 背景色
  • disabledColor: //onpress = null 的时候的颜色(不知道为什么测试不管用)
    注意点 在这里无效 在它子类有效(RaisedButton ,FlatButton ,OutlineButton )
  • highlightColor: 当用户 按下高亮时 的颜色
  • elevation: Z轴阴影 默认是2 ,当 enable 的时候的阴影
  • highlightElevation: 高亮时的阴影 默认是 8 button 被按下的时候
  • disabledElevation: 当 disabled (onpress = null) 的阴影 默认是0 ,测试的时候 阴影还是 为0.0,也就是说不管用
    注意点 在这里无效 在它子类有效(RaisedButton ,FlatButton ,OutlineButton )
  • minWidth: 最小的宽度 默认是 88 。 在 ButtonTheme 规定的
  • height: 高度, 默认是 36 也是在 ButtonTheme 规定的
  • child: 包括的子控件
  • shape 边框样式
    注意点 在这里无效 在它子类有效(RaisedButton ,FlatButton ,OutlineButton )
  MaterialButton(
    onPressed: null,
    child: Text("MaterialButton"),
  ),
  MaterialButton(
    onPressed: null,
    child: Text("MaterialButton2"),
  ),

RawMaterialButton

  • onPressed 点击回调
  • onHighlightChanged 高亮变化回调
  • textStyle 字体样式
  • fillColor 背景填充颜色
  • highlightColor 高亮颜色
  • splashColor 水波纹颜色
  • elevation 阴影Z轴值
  • highlightElevation 高亮 阴影Z轴值
  • disabledElevation 禁用阴影Z轴值
  • padding padding
  • constraints 按钮大小,一般设置最小size
  • shape 按钮形状
    children: <Widget>[
      RawMaterialButton(
        onPressed: null,
        child: Text("RawMaterialButton"),
      ),
      RawMaterialButton(
        onPressed: null,
        child: Text("RawMaterialButton2"),
      ),

FloatingActionButton

  • child :子视图,一般为 Icon,不推荐使用文字
  • tooltip FAB: 被长按时显示,也是无障碍功能
  • backgroundColor: 背景颜色
  • elevation :未点击的时候的阴影
  • hignlightElevation :点击时阴影值,默认 12.0
  • onPressed :点击事件回调
  • shape :可以定义 FAB 的形状等
  • mini: 是否是 mini 类型默认 false
  FloatingActionButton(
    onPressed: null,
    heroTag: "FloatingActionButton1",
    child: const Icon(Icons.ac_unit),
    tooltip: "Floating Action Button 1",
  ),
  FloatingActionButton(
    onPressed: null,
    child: const Icon(Icons.backpack_outlined),
    heroTag: "FloatingActionButton2",
    tooltip: "Floating Action Button 2",
  ),
image.png

完整示例

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';

class ButtonExample extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    return ButtonExampleState();
  }
}

class ButtonExampleState extends State<ButtonExample> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Button Widget'),
      ),
      body: CustomScrollView(
        slivers: [
          SliverList(
              delegate: SliverChildListDelegate(<Widget>[
            Center(
              child: Column(
                children: [
                  BackButton(color: Colors.orange),
                  CloseButton(),
                  ButtonBar(
                    children: <Widget>[
                      FlatButton(
                        onPressed: () {},
                        child: Text(
                          "FlatButton",
                          semanticsLabel: "FlatButton 1",
                        ),
                      ),
                      FlatButton(
                        onPressed: () {},
                        child: Text(
                          "Disabled",
                          semanticsLabel: "DisableButton 2",
                        ),
                      )
                    ],
                  ),
                  FlatButton.icon(
                      onPressed: null,
                      icon: const Icon(Icons.add_circle_outline, size: 18),
                      label: const Text(
                        "FlatButton",
                        semanticsLabel: 'FlatButton 3',
                      )),
                  FlatButton.icon(
                      onPressed: null,
                      icon:
                          const Icon(Icons.add_circle_outline_sharp, size: 18),
                      label: const Text(
                        "Disabled",
                        semanticsLabel: 'DisableButton 4',
                      )),
                  ButtonBar(
                    mainAxisSize: MainAxisSize.max,
                    children: <Widget>[
                      OutlineButton(
                        onPressed: () {},
                        child: Text('data'),
                      ),
                      OutlineButton(
                        onPressed: () {},
                        child: Text('data'),
                      ),
                      OutlineButton(
                        onPressed: () {},
                        child: Text('data'),
                      ),
                      OutlineButton(
                        onPressed: () {},
                        child: Text('data'),
                      ),
                      OutlineButton(
                        onPressed: () {},
                        child: Text('data'),
                      ),
                    ],
                  ),
                  ButtonBar(
                    children: <Widget>[
                      OutlineButton.icon(
                          onPressed: null,
                          icon: Icon(Icons.add, size: 25),
                          label: Text(
                            "Outline Button",
                            semanticsLabel: "Outline Button 1",
                          )),
                      OutlineButton.icon(
                          disabledTextColor: Colors.orange,
                          onPressed: null,
                          icon: Icon(Icons.add, size: 25),
                          label: Text(
                            "Disable Button",
                            semanticsLabel: "Disable Button 2",
                          )),
                    ],
                  ),
                  ButtonBar(
                    children: <Widget>[
                      RaisedButton(
                        onPressed: null,
                        child: Text("Raise Button"),
                      ),
                      RaisedButton(
                        disabledTextColor: Colors.tealAccent,
                        onPressed: null,
                        child: Text("Disabled Button"),
                      ),
                    ],
                  ),
                  ButtonBar(
                    children: <Widget>[
                      RaisedButton.icon(
                        onPressed: null,
                        icon: const Icon(
                          Icons.add_circle,
                          size: 18,
                        ),
                        label: Text("Raise Button"),
                      ),
                      RaisedButton.icon(
                        disabledTextColor: Colors.amber,
                        icon: const Icon(
                          Icons.add_alarm,
                          size: 18,
                        ),
                        onPressed: null,
                        label: Text("Disabled Button"),
                      ),
                    ],
                  ),
                  ButtonBar(
                    children: <Widget>[
                      MaterialButton(
                        onPressed: null,
                        child: Text("MaterialButton"),
                      ),
                      MaterialButton(
                        onPressed: null,
                        child: Text("MaterialButton2"),
                      ),
                    ],
                  ),
                  ButtonBar(
                    children: <Widget>[
                      RawMaterialButton(
                        onPressed: null,
                        child: Text("RawMaterialButton"),
                      ),
                      RawMaterialButton(
                        onPressed: null,
                        child: Text("RawMaterialButton2"),
                      ),
                    ],
                  ),
                  ButtonBar(
                    children: <Widget>[
                      FloatingActionButton(
                        onPressed: null,
                        heroTag: "FloatingActionButton1",
                        child: const Icon(Icons.ac_unit),
                        tooltip: "Floating Action Button 1",
                      ),
                      FloatingActionButton(
                        onPressed: null,
                        child: const Icon(Icons.backpack_outlined),
                        heroTag: "FloatingActionButton2",
                        tooltip: "Floating Action Button 2",
                      ),
                    ],
                  ),
                ],
              ),
            ),
          ]))
        ],
      ),
    );
  }
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容