Flutter-serarch_bar 搜索組件

flutter 的searchBar,按照公司項目需求自己寫了個翻斟。先看效果圖:


不輸入狀態(tài)

輸入狀態(tài)

可以看到searchBar分為兩個不同的狀態(tài),一個是不聚焦的狀態(tài)递惋,一個是聚焦的狀態(tài)。組件屬性說明:

final String hintText;//占位字符
  final onSearch;//點擊搜索和鍵盤的搜索按鈕觸發(fā)時間溢陪,返回搜索框里輸入的文字
  final bool showCancleBtn;//是否顯示右邊的取消/搜索按鈕
具體實現(xiàn)

1萍虽、在state里定義textField相關的屬性

//輸入框控制器
final TextEditingController _controller = TextEditingController(text: '');
//輸入框node
final FocusNode _node = FocusNode();
//是否在輸入中
bool _isInput = false;

2、主要界面實現(xiàn)
2-1形真、在build里面實現(xiàn)界面展示代碼

@override
  Widget build(BuildContext context) {
    // 如果允許輸入且輸入框沒有輸入內(nèi)容杉编,則聚焦。否則不做操作
    if (_isInput && _controller.text.isEmpty) {
      FocusScope.of(context).requestFocus(_node);
    }
    return Container(
      padding: EdgeInsets.only(
          top: 8,
          bottom: 8,
          left: 16,
          right: (!widget.showCancleBtn || !_isInput) ? 16 : 0),
      color: Theme.of(context).scaffoldBackgroundColor,
      child: Row(
        crossAxisAlignment: CrossAxisAlignment.center,
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          Expanded(
            child: GestureDetector(
              onTap: () {
                setState(() {
                  _isInput = true;
                });
              },
              child: Container(
                height: 30,
                decoration: BoxDecoration(
                    color: Colors.white,
                    borderRadius: BorderRadius.circular(4),
                    border: Border.all(
                        color: Color.fromRGBO(0, 0, 0, 0.1), width: 1)),
                child: _isInput ? _buildInput() : _buildNoInput(),
              ),
            ),
          ),
          (widget.showCancleBtn && (_controller.text.isNotEmpty || _isInput))
              ? InkWell(
                  onTap: () {
                    if (_controller.text.isNotEmpty && !_node.hasFocus) {
                      if (widget.onSearch != null) {
                        widget.onSearch(_controller.text);
                      }
                    } else {
                      _node.unfocus();
                    }
                  },
                  child: Container(
                    width: 56,
                    height: 26,
                    alignment: Alignment.center,
                    child: Text(
                      (_controller.text.isNotEmpty && !_node.hasFocus)
                          ? '搜索'
                          : '取消',
                      style: TextStyle(
                          fontSize: 14,
                          height: 1.4,
                          color: Theme.of(context).primaryColor),
                    ),
                  ))
              : SizedBox(
                  width: 0,
                )
        ],
      ),
    );
  }

2-2没酣、不在輸入狀態(tài)且輸入框沒有輸入文字的時候展示的界面代碼

Widget _buildNoInput() {
    return Row(
      mainAxisAlignment: MainAxisAlignment.center,
      crossAxisAlignment: CrossAxisAlignment.center,
      children: [
        Icon(
          Icons.search,
          color: Color.fromRGBO(0, 0, 0, 0.2),
          size: 14,
        ),
        SizedBox(
          width: 4,
        ),
        Text(
          widget.hintText,
          style: TextStyle(color: Color.fromRGBO(0, 0, 0, 0.2), fontSize: 12),
        )
      ],
    );
  }

2-3、輸入狀態(tài)下界面代碼

Widget _buildInput() {
    return Row(
      crossAxisAlignment: CrossAxisAlignment.center,
      children: [
        SizedBox(
          width: 8,
        ),
        Icon(
          Icons.search,
          color: Color.fromRGBO(0, 0, 0, 0.2),
          size: 14,
        ),
        SizedBox(
          width: 4,
        ),
        Expanded(
          child: Container(
            height: 30,
            child: TextField(
              style:
                  TextStyle(color: Color.fromRGBO(0, 0, 0, 0.8), fontSize: 12),
              controller: _controller,
              focusNode: _node,
              autofocus: true,
              textInputAction: TextInputAction.search,
              onEditingComplete: () {
                if (_controller.text.isNotEmpty) {
                  _node.unfocus();
                  if (widget.onSearch != null) {
                    widget.onSearch(_controller.text);
                  }
                } else {
                  _node.unfocus();
                }
              },
              decoration: InputDecoration(
                  contentPadding: EdgeInsets.only(top: -18),
                  hintText: widget.hintText,
                  hintStyle: TextStyle(
                      fontSize: 12, color: Color.fromRGBO(0, 0, 0, 0.2)),
                  border: InputBorder.none,
                  fillColor: Colors.red),
            ),
          ),
        )
      ],
    );
  }

為了做到點擊取消或者點擊鍵盤搜索按鈕能取消聚焦且判斷界面展示卵迂,就需要監(jiān)聽輸入框TextField是否聚焦的狀態(tài)裕便,這個時候,在InitState里面進行監(jiān)聽见咒。

_node.addListener(() {
      debugPrint(
          '-------------${_controller.text.isEmpty}---${_node.hasFocus}');
      if (!_node.hasFocus) {
        // 失去焦點
        setState(() {
          _isInput = _controller.text.isEmpty ? false : true;
        });
      } else {}
    });

實現(xiàn)searchBar完成了偿衰,這個只是針對公司項目開發(fā)的一個組件,后續(xù)會做個AppBar內(nèi)置搜索框的組件改览。
附上項目地址:HGSearchBar

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末下翎,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子宝当,更是在濱河造成了極大的恐慌视事,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件庆揩,死亡現(xiàn)場離奇詭異俐东,居然都是意外死亡,警方通過查閱死者的電腦和手機订晌,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門虏辫,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人锈拨,你說我怎么就攤上這事砌庄。” “怎么了奕枢?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵娄昆,是天一觀的道長。 經(jīng)常有香客問我缝彬,道長稿黄,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任跌造,我火速辦了婚禮杆怕,結(jié)果婚禮上族购,老公的妹妹穿的比我還像新娘。我一直安慰自己陵珍,他們只是感情好寝杖,可當我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著互纯,像睡著了一般瑟幕。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上留潦,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天只盹,我揣著相機與錄音,去河邊找鬼兔院。 笑死殖卑,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的坊萝。 我是一名探鬼主播孵稽,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼十偶!你這毒婦竟也來了菩鲜?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤惦积,失蹤者是張志新(化名)和其女友劉穎接校,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體狮崩,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡馅笙,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了厉亏。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片董习。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖爱只,靈堂內(nèi)的尸體忽然破棺而出皿淋,到底是詐尸還是另有隱情,我是刑警寧澤恬试,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布窝趣,位于F島的核電站,受9級特大地震影響训柴,放射性物質(zhì)發(fā)生泄漏哑舒。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一幻馁、第九天 我趴在偏房一處隱蔽的房頂上張望洗鸵。 院中可真熱鬧越锈,春花似錦、人聲如沸膘滨。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽火邓。三九已至丹弱,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間铲咨,已是汗流浹背躲胳。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留纤勒,地道東北人坯苹。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像踊东,于是被迫代替她去往敵國和親北滥。 傳聞我的和親對象是個殘疾皇子刚操,可洞房花燭夜當晚...
    茶點故事閱讀 42,786評論 2 345