Flutter入門(12):Flutter 組件之 RaisedButton 詳解

1. 基本介紹

RaisedButton 是一個非常常用的組件悍汛,有很多屬性來設(shè)置按鈕的各個狀態(tài),非常方便在张。美中不足的是用含,按鈕無法直接設(shè)置 enable,disable 屬性帮匾,很不人性化啄骇。但是按鈕的狀態(tài)設(shè)置是一個非常常用的功能,下文會介紹如何實現(xiàn)按鈕的狀態(tài)設(shè)置瘟斜。

2. 示例代碼

代碼下載地址缸夹。如果對你有幫助的話記得給個關(guān)注,代碼會根據(jù)我的 Flutter 專題不斷更新螺句。

3. RaisedButton 使用

3.1 創(chuàng)建容器

優(yōu)雅的編程虽惭,首先創(chuàng)建一個 raisedbutton.dart 文件。
這次和之前的很多文章不同蛇尚,因為 button 是可以動態(tài)改變的趟妥,所以這一次創(chuàng)建一個繼承 StatefulWidget 的 class。

import 'package:flutter/material.dart';

class FMRaisedButtonVC extends StatefulWidget {
  FMRaisedButtonVC({Key key}) : super(key: key);
  @override
  FMRaisedButtonState createState() => FMRaisedButtonState();
}

class FMRaisedButtonState extends State<FMRaisedButtonVC> {
  var btnEnabled = true;

  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return Container(
      child: Scaffold(
        appBar: AppBar(
          title: Text('RaisedButton'),
          backgroundColor: Colors.lightBlue,
        ),
        body: _listView(),
      ),
    );
  }

  ListView _listView(){
    return ListView(
      padding: EdgeInsets.all(20),
      children: [
        _button(),
      ],
    );
  }

  RaisedButton _button(){
    return RaisedButton(
      color: Colors.blue,
      child: Text("我是一個按鈕"),
      textColor: Colors.white,
    );
  }
}
button style.png

3.2 button 的點擊事件

我們給 button 增加一個點擊事件佣蓉,一個高亮事件披摄,一個長按事件。

  RaisedButton _button(){
    return RaisedButton(
      onPressed: (){
        print("點擊了 button");
      },
      onLongPress: (){
        print("長按了 button");
      },
      onHighlightChanged: (bool b){
        print(b ? "button 高亮了" : "button 不亮了");
      },
      color: Colors.blue,
      child: Text("我是一個按鈕"),
      textColor: Colors.white,
    );
  }
button press.png

button long press.png

3.3 button 形狀勇凭、邊框

3.3.1 圓形

  ListView _listView(){
    return ListView(
      padding: EdgeInsets.all(20),
      children: [
        _button(),
        _shapeColumn(),
      ],
    );
  }

  Column _shapeColumn(){
    return Column(
      children: [
        Container(
          height: 30,
          alignment: Alignment.centerLeft,
          child: Text('shape button'),
        ),
        RaisedButton(
          color: Colors.blue,
          textColor: Colors.white,
          child: Container(
            height: 100,
            width: 100,
            child: Text('圓的'),
            alignment: Alignment.center,
          ),
          shape: CircleBorder(
            side: BorderSide(
              width: 2,
              color: Colors.red,
              style: BorderStyle.solid,
              // style: BorderStyle.none,
            ),
          ),
        ),
      ],
    );
  }
shape circle solid.png

shape circle none.png

3.3.2 邊緣圓形(球場形狀)

  Column _shapeColumn(){
    return Column(
      children: [
        Container(
          height: 30,
          alignment: Alignment.centerLeft,
          child: Text('shape button'),
        ),
        RaisedButton(
          color: Colors.blue,
          textColor: Colors.white,
          child: Container(
            height: 100,
            width: 100,
            child: Text('圓的'),
            alignment: Alignment.center,
          ),
          shape: CircleBorder(
            side: BorderSide(
              width: 2,
              color: Colors.red,
              // style: BorderStyle.solid,
              style: BorderStyle.none,
            ),
          ),
        ),
        Padding(padding: EdgeInsets.all(10)),
        RaisedButton(
          color: Colors.blue,
          textColor: Colors.white,
          child: Container(
            height: 60,
            width: 200,
            child: Text('球場的'),
            alignment: Alignment.center,
          ),
          shape: StadiumBorder(
            side: BorderSide(
              width: 2,
              color: Colors.red,
              style: BorderStyle.solid,
              // style: BorderStyle.none,
            ),
          ),
        ),
      ],
    );
  }
shape stadium solid.png

shape stadium none.png

3.3.3 圓角

  Column _shapeColumn(){
    return Column(
      children: [
        Container(
          height: 30,
          alignment: Alignment.centerLeft,
          child: Text('shape button'),
        ),
        RaisedButton(
          color: Colors.blue,
          textColor: Colors.white,
          child: Container(
            height: 100,
            width: 100,
            child: Text('圓的'),
            alignment: Alignment.center,
          ),
          shape: CircleBorder(
            side: BorderSide(
              width: 2,
              color: Colors.red,
              // style: BorderStyle.solid,
              style: BorderStyle.none,
            ),
          ),
        ),
        Padding(padding: EdgeInsets.all(10)),
        RaisedButton(
          color: Colors.blue,
          textColor: Colors.white,
          child: Container(
            height: 60,
            width: 200,
            child: Text('球場的'),
            alignment: Alignment.center,
          ),
          shape: StadiumBorder(
            side: BorderSide(
              width: 2,
              color: Colors.red,
              style: BorderStyle.solid,
              // style: BorderStyle.none,
            ),
          ),
        ),
        Padding(padding: EdgeInsets.all(10)),
        RaisedButton(
          color: Colors.blue,
          textColor: Colors.white,
          child: Container(
            height: 60,
            width: 200,
            child: Text('球場的'),
            alignment: Alignment.center,
          ),
          shape: RoundedRectangleBorder(
            borderRadius: BorderRadius.circular(10),
            side: BorderSide(
              width: 2,
              color: Colors.red,
              // style: BorderStyle.solid,
              style: BorderStyle.none,
            ),
          ),
        ),
      ],
    );
  }
shape roundrect solid.png

shape roundrect none.png

3.4 button 狀態(tài)疚膊,enable,disable 狀態(tài)的使用

3.4.1 基本介紹

Button 狀態(tài)改變其實是一個很常用的功能虾标,但是在 flutter 里并沒有直接設(shè)置 enable寓盗,disable 的方法。這一點不得不說是美中不足的地方,flutter 里的 button 在 onPressed : null 并且 onLongPress : null 時傀蚌,會認為 button 處于 disabled 狀態(tài)基显,會顯示設(shè)置的 disabledColor 等。

3.4.2 創(chuàng)建一個可改變狀態(tài)的 button

我們先聲明一個變量 btnEnabled善炫,當值為 true 時撩幽,給第一個 button 的 onPressed 賦值,當值為 false 時箩艺,給第一個 button 的 onPressed 設(shè)置為 null窜醉。然后點擊另一個按鈕時,改變 btnEnabled 值艺谆,相互取反榨惰,利用 setState(){}; 方法來刷新頁面,完成預期效果静汤。

  var btnEnabled = true;

  ListView _listView(){
    return ListView(
      padding: EdgeInsets.all(20),
      children: [
        _button(),
        _shapeColumn(),
        _statefulButton(),
      ],
    );
  }

  Column _statefulColumn(){
    return Column(
      children: [
        Container(
          height: 30,
          alignment: Alignment.centerLeft,
          child: Text('stateful button'),
        ),
        Padding(padding: EdgeInsets.all(10)),
        RaisedButton(
          onPressed: btnEnabled ? (){} : null,
          textColor: Colors.white,
          color: Colors.blue,
          highlightColor: Colors.yellow,
          disabledColor: Colors.grey,
          child: Text('${btnEnabled ? "我現(xiàn)在 enable了":"我現(xiàn)在 disable 了"}'),
        ),
        Padding(padding: EdgeInsets.all(10)),
        RaisedButton(
          onPressed: () {
            btnEnabled = !btnEnabled;
            // 執(zhí)行該方法會刷新頁面
            setState(() {
              
            });
          },
          textColor: Colors.white,
          color: Colors.blue,
          highlightColor: Colors.yellow,
          child: Text('點我可以控制上邊那家伙'),
        ),
      ],
    );
  }
stateful button enable.png

stateful button disable.png

3.5 自定義 button

3.5.1 簡單介紹

在實際項目里琅催,這種文字,特殊形狀 button 能滿足大部分需求虫给,但肯定不是所有需求藤抡。有的按鈕需要添加圖片,頭像狰右,文字等比較復雜的樣式。
其實思路很簡單舆床,button 的 child 屬性可以使用 Container棋蚌、Row、Column 等組件來組合出一個復雜的效果挨队。
接下來我這邊提供一個示例谷暮,利用 Container 設(shè)置背景圖,然后利用 Row 實現(xiàn)左邊頭像盛垦,右邊文字的布局湿弦,然后右側(cè)文字使用 Column 布局,完成上方和下方兩行文字的布局腾夯。

  ListView _listView(){
    return ListView(
      padding: EdgeInsets.all(20),
      children: [
        _button(),
        _shapeColumn(),
        _statefulColumn(),
        _customColumn(),
      ],
    );
  }

  Column _customColumn(){
    return Column(
      children: [
        Container(
          height: 30,
          alignment: Alignment.centerLeft,
          child: Text('custom button'),
        ),
        Padding(padding: EdgeInsets.all(10)),
        RaisedButton(
          child: Container(
            height: 200,
            decoration: BoxDecoration(
              image: DecorationImage(
                image: NetworkImage('http://tiebapic.baidu.com/forum/w%3D580/sign=a96ca741eafaaf5184e381b7bc5594ed/7ea6a61ea8d3fd1f2643ad5d274e251f95ca5f38.jpg'),
              ),
            ),
            child: Row(
              children: [
                Container(
                  width: 150,
                  height: 150,
                  color: Colors.red,
                  child: Image.network('http://tiebapic.baidu.com/forum/w%3D580/sign=a96ca741eafaaf5184e381b7bc5594ed/7ea6a61ea8d3fd1f2643ad5d274e251f95ca5f38.jpg'),
                ),
                Column(
                  mainAxisAlignment: MainAxisAlignment.spaceEvenly,
                  children: [
                    Text(
                      '主標題',
                      style: TextStyle(
                        fontSize: 35,
                        color: Colors.red,
                      ),
                    ),
                    Text(
                      '副標題',
                      style: TextStyle(
                        fontSize: 30,
                        color: Colors.green,
                      ),
                    ),
                  ],
                ),
              ],
            ),
          ),
        ),
      ],
    );
  }
custom button.png

4. 技術(shù)小結(jié)

  • 基本Button的使用颊埃,背景色,文字顏色蝶俱,文字設(shè)置班利、點擊事件。
  • 特殊Button的使用榨呆,圓角罗标,球場形,圓形等button使用,應(yīng)用比較廣泛闯割。
  • Button的狀態(tài)改變彻消,enable,disable宙拉,應(yīng)用比較廣泛宾尚。
  • 自定義 Button,了解布局鼓黔,其實可以制定各種樣式的 button央勒。
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市澳化,隨后出現(xiàn)的幾起案子崔步,更是在濱河造成了極大的恐慌,老刑警劉巖缎谷,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件井濒,死亡現(xiàn)場離奇詭異,居然都是意外死亡列林,警方通過查閱死者的電腦和手機瑞你,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來希痴,“玉大人者甲,你說我怎么就攤上這事∑龃矗” “怎么了虏缸?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長嫩实。 經(jīng)常有香客問我刽辙,道長,這世上最難降的妖魔是什么甲献? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任宰缤,我火速辦了婚禮,結(jié)果婚禮上晃洒,老公的妹妹穿的比我還像新娘慨灭。我一直安慰自己,他們只是感情好球及,可當我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布缘挑。 她就那樣靜靜地躺著,像睡著了一般桶略。 火紅的嫁衣襯著肌膚如雪语淘。 梳的紋絲不亂的頭發(fā)上诲宇,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機與錄音惶翻,去河邊找鬼姑蓝。 笑死,一個胖子當著我的面吹牛吕粗,可吹牛的內(nèi)容都是我干的纺荧。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼颅筋,長吁一口氣:“原來是場噩夢啊……” “哼宙暇!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起议泵,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤占贫,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后先口,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體型奥,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年碉京,在試婚紗的時候發(fā)現(xiàn)自己被綠了厢汹。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡谐宙,死狀恐怖烫葬,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情凡蜻,我是刑警寧澤搭综,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站咽瓷,受9級特大地震影響设凹,放射性物質(zhì)發(fā)生泄漏舰讹。R本人自食惡果不足惜茅姜,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望月匣。 院中可真熱鬧钻洒,春花似錦、人聲如沸锄开。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽萍悴。三九已至头遭,卻和暖如春寓免,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背计维。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工袜香, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人鲫惶。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓蜈首,卻偏偏與公主長得像,于是被迫代替她去往敵國和親欠母。 傳聞我的和親對象是個殘疾皇子欢策,可洞房花燭夜當晚...
    茶點故事閱讀 43,490評論 2 348