Flutter 按钮组件 底部导航 浮动按钮 Swiper 自定义Dialog

一、Flutter 中的按钮组件介绍

  • Flutter 里常见的按钮组件有:
    RaisedButton、FlatButton、
    IconButton、OutlineButton、ButtonBar、FloatingActionButton 等。
  • RaisedButton :凸起的按钮,
  • ElevatedButton:凸起的按钮,
  • FlatButton :扁平化的按钮
  • OutlineButton:线框按钮
  • IconButton :图标按钮
  • ButtonBar:按钮组
  • FloatingActionButton: 浮动按钮

二、Flutter 按钮组件中的一些属性

  • onPressed:(){}

onPressed 按下按钮时触发的回调,接收一个
方法,传 null 表示按钮禁用,会显示禁用相关样式
child:

  • textColor: 文本颜色
  • color: 按钮的颜色
  • disabledColor: 按钮禁用时的颜色
  • disabledTextColor: 按钮禁用时的文本颜色
  • splashColor: 点击按钮时水波纹的颜色
  • highlightColor: 点击(长按)按钮后按钮的颜色
  • elevation: double 阴影的范围,值越大阴影范围越大
  • padding: 内边距
  • shape: 设置按钮的形状
shape: RoundedRectangleBorder(
    borderRadius: BorderRadius.circular(10),
 )

shape: CircleBorder(
    side: BorderSide(
      color: Colors.white,
   )
)
样式图

下面只举几个例子
实际开发中我们遇到的

    1. 自适应按钮
    1. 圆角按钮
    1. 带阴影按钮
    1. 带icon按钮
// 1.自适应按钮
          Row(
            children: [
              Expanded(
                  child: Container(
                margin: EdgeInsets.all(10),
                child: RaisedButton(
                  onPressed: () {},
                  child: Text("自适应按钮"),
                ),
              ))
            ],
          ),
// 2.圆角按钮
              Container(
                margin: EdgeInsets.only(left: 10),
                height: 40,
                width: 80,
                child: RaisedButton(
                  color: Colors.blue,
                  textColor: Colors.white,
                  onPressed: () {},
                  child: Text("圆角"),
                  shape: RoundedRectangleBorder(
                    borderRadius: BorderRadius.circular(10),
                  ),
                ),
              ),
// 3.带阴影
              RaisedButton(
                onPressed: () {},
                child: Text("带阴影"),
                elevation: 20,
              ),
// 4.带图标
              RaisedButton.icon(
                  onPressed: () {},
                  icon: Icon(Icons.search),
                  label: Text("带图标"))
// 5.背景颜色
              RaisedButton(
                onPressed: () {},
                color: Colors.blue,
                textColor: Colors.white,
                child: Text("背景按钮"),
              ),
// 6.修改 ElevatedButton样式使用 style: ElevatedButton.styleFrom
                ElevatedButton(
                  onPressed: () {},
                  child: Text("Elevate样式"),
                  style: ElevatedButton.styleFrom(
                      primary: Colors.red, // 按钮背景颜色
                      elevation: 20,
                      textStyle: TextStyle(color: Colors.blue, fontSize: 15)),
                ),

如何实现咸鱼凸起按钮

image.png

总的思想是FloatingActionButton去覆盖中间的BottomNavigationBarItem。因为BottomNavigationBarItem不能去掉icon属性,所以只能覆盖。

      floatingActionButton: Container(
        height: 80,
        width: 80,
        margin: EdgeInsets.only(top: 20),
        padding: EdgeInsets.all(10),
        decoration: BoxDecoration(
          borderRadius: BorderRadius.circular(40),
          color: Colors.white,
        ),
        child: FloatingActionButton(
          elevation: 10,
          onPressed: () {
            setState(() {
              this._index = 1;
            });
          },
          tooltip: 'Increment',
          child: Icon(Icons.add),
        ),
      ),
      floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
      bottomNavigationBar: BottomNavigationBar(
        backgroundColor: Colors.white,
        currentIndex: this._index,
        onTap: (index) {
          setState(() {
            this._index = index;
          });
        },
        type: BottomNavigationBarType.fixed, // 配置多个底部按钮
        items: [
          BottomNavigationBarItem(
              icon: Icon(Icons.home_filled), title: Text("首页")),
          BottomNavigationBarItem(
              icon: Icon(Icons.arrow_left), title: Text("")),
          BottomNavigationBarItem(icon: Icon(Icons.settings), title: Text("我的"))
        ],
      ),
Scaffold(
      ...
      resizeToAvoidBottomInset: false, // 防止FloatingActionButton被顶起
      ...
)

三、Flutter中的各种Dialog

dialog.gif
AlertDialog
_showAlartDialog() async {
  var result = await showDialog(
      context: context,
      barrierDismissible: false,
      builder: (context) {
        return AlertDialog(
          title: Text("提示"),
          content: Text("确定删除"),
          actions: [
            OutlinedButton(
                onPressed: () {
                  Navigator.pop(context, "cancle");},
                child: Text("取消")),
            ElevatedButton(
                onPressed: () {
                  Navigator.pop(context, "sure");},
                child: Text("确定")),
          ],
        );
      });
  print("===========$result");
}
SimpleDialog
_simpleDiaglog() async {
  var simpleRel = await showDialog(
      context: context,
      builder: (BuildContext context) {
        return SimpleDialog(
          title: Text("select 单选按钮框"),
          children: <Widget>[
            SimpleDialogOption(
              child: Text("Option A"),
              onPressed: () {
                Navigator.pop(context, 'Option A');},
            ),
          ],
        );
      });
}
showModalBottomSheet
_showbottomDialog() async {
  var actionSheet = await showModalBottomSheet(
      context: context,
      builder: (builder) {
        return Container(
          height: 200,
          child: Column(
            children: <Widget>[
              ListTile(
                title: Text("分享 A"),
                onTap: () {
                  Navigator.pop(context, 'A');},
              ),
            ],
          ),
        );
      });
}
自定义Dialog
// 1. 创建Dialog里面的内容  创建自定义类WindowDialog
import 'dart:async';
import 'package:flutter/material.dart';

class WindowDialog extends StatefulWidget {
  const WindowDialog({Key? key}) : super(key: key);

  @override
  _WindowDialogState createState() => _WindowDialogState();
}

class _WindowDialogState extends State<WindowDialog> {
  _showTimeDialog(context) {
    Timer.periodic(Duration(milliseconds: 1500), (timer) {
      Navigator.pop(context);
      timer.cancel();
    });
  }

  @override
  Widget build(BuildContext context) {
    _showTimeDialog(context);
    return Material( // 这里需要注意
        type: MaterialType.transparency,
        child: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              Container(
                alignment: Alignment.center,
                width: 300,
                decoration: BoxDecoration(
                  color: Colors.white,
                  borderRadius: BorderRadius.circular(10),
                ),
                child: AspectRatio(
                  aspectRatio: 3 / 2,
                  child: Stack(
                    children: [
                      Align(
                        child: Text("头部"),
                        alignment: Alignment(0, -1),
                      ),
                      Align(
                        child: IconButton(
                          onPressed: () {
                            Navigator.pop(context);
                          },
                          icon: Icon(
                            Icons.close_sharp,
                            color: Colors.black26,
                            size: 24,
                          ),
                        ),
                        alignment: Alignment(1, -1),
                      ),
                    ],
                  ),
                ),
              ),
            ],
          ),
        ));
  }
}

这里自定义的dialog的样式必须是Material否则不会生效。

// 2.引用
showDialog(
  context: context,
  builder: (context) {
  return WindowDialog();
});

dialog 小技巧 设置barrierDismissible: false,为外部点击无效
自定义Material(中的type: MaterialType.transparency设置背景半透明;
Navigator.pop(context, "result"); 后面的result可以通过async aweit 同步获取。

Toast
fluttertoast: ^8.0.8
Fluttertoast.showToast(
   msg: "This is Center Short Toast",
   toastLength: Toast.LENGTH_SHORT,
   gravity: ToastGravity.CENTER,
   timeInSecForIosWeb: 1,
   backgroundColor: Colors.red,
   textColor: Colors.white,
   fontSize: 16.0);

四、Swiper

swiper.gif
flutter_swiper: ^1.1.6
import 'package:flutter/material.dart';
import 'package:flutter_swiper/flutter_swiper.dart';

class Mine extends StatelessWidget {
  Mine({Key? key}) : super(key: key);

  List imageList = [
    "https://cube.elemecdn.com/6/94/4d3ea53c084bad6931a56d5158a48jpeg.jpeg",
    "https://flutter.github.io/assets-for-api-docs/assets/widgets/owl-2.jpg",
    'https://fuss10.elemecdn.com/a/3f/3302e58f9a181d2509f3dc0fa68b0jpeg.jpeg',
    'https://fuss10.elemecdn.com/1/34/19aa98b1fcb2781c4fba33d850549jpeg.jpeg',
    'https://fuss10.elemecdn.com/0/6f/e35ff375812e6b0020b6b4e8f9583jpeg.jpeg',
    'https://fuss10.elemecdn.com/9/bb/e27858e973f5d7d3904835f46abbdjpeg.jpeg',
    'https://fuss10.elemecdn.com/d/e6/c4d93a3805b3ce3f323f7974e6f78jpeg.jpeg',
    'https://fuss10.elemecdn.com/3/28/bbf893f792f03a54408b3b7a7ebf0jpeg.jpeg',
    'https://fuss10.elemecdn.com/2/11/6535bcfb26e4c79b48ddde44f4b6fjpeg.jpeg'
  ];

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Container(
          child: Column(
        children: [
          AspectRatio(
            aspectRatio: 2 / 1,
            child: new Swiper(
              itemBuilder: (BuildContext context, int index) {
                return new Image.network(
                  imageList[index],
                  fit: BoxFit.cover,
                );
              },
              itemCount: imageList.length,
              loop: true,
              autoplay: true,
              onTap: (index) {
                print("=-=-=-=-$index=-");
              },
              duration: 500,
              // scrollDirection: Axis.vertical,
              pagination: new SwiperPagination(
                  alignment: Alignment.bottomCenter,
                  margin: EdgeInsets.only(top: 10),
                  builder: SwiperPagination.dots),
              // pagination: new SwiperCustomPagination(
              //     builder: (BuildContext context, SwiperPluginConfig config) {
              //       return config.;
              //     }
              // ),
              // control: new SwiperControl(),
            ),
          ),
        ],
      )),
    );
  }
}

Demo地址

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

推荐阅读更多精彩内容