Flutter 按鈕組件 底部導航 浮動按鈕 Swiper 自定義Dialog

一、Flutter 中的按鈕組件介紹

  • Flutter 里常見的按鈕組件有:
    RaisedButton谍失、FlatButton谨究、
    IconButton、OutlineButton、ButtonBar雕薪、FloatingActionButton 等昧诱。
  • RaisedButton :凸起的按鈕,
  • ElevatedButton:凸起的按鈕所袁,
  • FlatButton :扁平化的按鈕
  • OutlineButton:線框按鈕
  • IconButton :圖標按鈕
  • ButtonBar:按鈕組
  • FloatingActionButton: 浮動按鈕

二盏档、Flutter 按鈕組件中的一些屬性

  • onPressed:(){}

onPressed 按下按鈕時觸發(fā)的回調(diào),接收一個
方法燥爷,傳 null 表示按鈕禁用蜈亩,會顯示禁用相關(guān)樣式
child:

  • textColor: 文本顏色
  • color: 按鈕的顏色
  • disabledColor: 按鈕禁用時的顏色
  • disabledTextColor: 按鈕禁用時的文本顏色
  • splashColor: 點擊按鈕時水波紋的顏色
  • highlightColor: 點擊(長按)按鈕后按鈕的顏色
  • elevation: double 陰影的范圍,值越大陰影范圍越大
  • padding: 內(nèi)邊距
  • shape: 設(shè)置按鈕的形狀
shape: RoundedRectangleBorder(
    borderRadius: BorderRadius.circular(10),
 )

shape: CircleBorder(
    side: BorderSide(
      color: Colors.white,
   )
)
樣式圖

下面只舉幾個例子
實際開發(fā)中我們遇到的

    1. 自適應(yīng)按鈕
    1. 圓角按鈕
    1. 帶陰影按鈕
    1. 帶icon按鈕
// 1.自適應(yīng)按鈕
          Row(
            children: [
              Expanded(
                  child: Container(
                margin: EdgeInsets.all(10),
                child: RaisedButton(
                  onPressed: () {},
                  child: Text("自適應(yīng)按鈕"),
                ),
              ))
            ],
          ),
// 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)),
                ),

如何實現(xiàn)咸魚凸起按鈕

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. 創(chuàng)建Dialog里面的內(nèi)容  創(chuàng)建自定義類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 小技巧 設(shè)置barrierDismissible: false,為外部點擊無效
自定義Material(中的type: MaterialType.transparency設(shè)置背景半透明;
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地址

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市橙数,隨后出現(xiàn)的幾起案子尊流,更是在濱河造成了極大的恐慌,老刑警劉巖灯帮,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件崖技,死亡現(xiàn)場離奇詭異,居然都是意外死亡施流,警方通過查閱死者的電腦和手機响疚,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來瞪醋,“玉大人,你說我怎么就攤上這事装诡∫埽” “怎么了?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵鸦采,是天一觀的道長宾巍。 經(jīng)常有香客問我,道長渔伯,這世上最難降的妖魔是什么顶霞? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上选浑,老公的妹妹穿的比我還像新娘蓝厌。我一直安慰自己,他們只是感情好古徒,可當我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布拓提。 她就那樣靜靜地躺著,像睡著了一般隧膘。 火紅的嫁衣襯著肌膚如雪代态。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天疹吃,我揣著相機與錄音蹦疑,去河邊找鬼。 笑死萨驶,一個胖子當著我的面吹牛歉摧,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播篡撵,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼判莉,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了育谬?” 一聲冷哼從身側(cè)響起券盅,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎膛檀,沒想到半個月后锰镀,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡咖刃,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年泳炉,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片嚎杨。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡花鹅,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出枫浙,到底是詐尸還是另有隱情刨肃,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布箩帚,位于F島的核電站真友,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏紧帕。R本人自食惡果不足惜盔然,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧愈案,春花似錦挺尾、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至崇众,卻和暖如春掂僵,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背顷歌。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工锰蓬, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人眯漩。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓芹扭,卻偏偏與公主長得像,于是被迫代替她去往敵國和親赦抖。 傳聞我的和親對象是個殘疾皇子舱卡,可洞房花燭夜當晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容