Flutter入門(27):Flutter 組件之 InputDecoration 詳解

1. 基本介紹

InputDecoration 主要為 TextField 提供各種樣式排版布局澎现,由于內(nèi)容較多所刀,所以單獨(dú)拿出來(lái)詳解凿宾。

2. 示例代碼

代碼下載地址坠非。如果對(duì)你有幫助的話記得給個(gè)關(guān)注误澳,代碼會(huì)根據(jù)我的 Flutter 專題不斷更新耻矮。

3. 屬性介紹

InputDecoration 屬性
--|--
icon | 位于輸入框外側(cè)坐標(biāo)的圖標(biāo)
labelText | 提示語(yǔ),位于輸入框上方
labelStyle | 提示語(yǔ)樣式 TextStyle
helperText | 輔助文本忆谓,位于輸入框下方裆装,errorText 為空時(shí)顯示
helperStyle | 輔助文本樣式 TextStyle
helperMaxLines | 輔助文本最大展示行數(shù)
hintText | 占位文本,位于輸入框光標(biāo)后倡缠,輸入內(nèi)容為空時(shí)展示
hintStyle | 占位文本樣式 TextStyle
hintMaxLines | 占位文本最大展示行數(shù)
errorText | 錯(cuò)誤文本哨免,位于輸入框下方
errorStyle | 錯(cuò)誤文本樣式 TextStyle
errorMaxLines | 錯(cuò)誤文本最大展示行數(shù)
hasFloatingPlaceholder | 默認(rèn)為true,從 v1.13.2 版本已廢棄昙沦,使用 floatingLabelBehavior 替代
floatingLabelBehavior | FloatingLabelBehavior琢唾,auto : labelText 顯示在輸入框中,當(dāng)開始輸入時(shí)盾饮,會(huì)有一個(gè)動(dòng)畫采桃,字體變小并顯示在輸入框上方。 never : labelText 顯示在輸入框中丐谋,當(dāng)開始輸入時(shí)芍碧,labelText 隱藏。 always: LabelText 永遠(yuǎn)顯示在最上方号俐。
isCollapsed | 是否為InputDecoration.collapsed,默認(rèn)為 false定庵,為true時(shí)吏饿,需要使用 InputDecoration.collapsed() 來(lái)創(chuàng)建 decoration
isDense | 輸入框是否為密集形式踪危,默認(rèn)為false
contentPadding | 內(nèi)間距,默認(rèn)值與 border 以及 isDense 有關(guān)猪落,下方會(huì)貼源碼備注
prefixIcon | 頭部圖標(biāo)贞远,位于輸入框內(nèi)部最左側(cè)
prefixIconConstraints | 頭部圖標(biāo)盒約束,效果不是很明顯
prefix | 頭部組件 Widget笨忌,位于光標(biāo)左側(cè)蓝仲,與 prefixText 不能同時(shí)使用
prefixText | 頭部文本,位于光標(biāo)左側(cè)官疲,與 prefix 不能同時(shí)使用
prefixStyle | 頭部文本樣式 TextStyle
suffixIcon | 尾部圖標(biāo)袱结,位于輸入框內(nèi)部最右側(cè)
suffix | 尾部組件 Widget,位于輸入框右側(cè)途凫,與 suffixText 不能同時(shí)使用
suffixText | 尾部文本垢夹,位于輸入框右側(cè),與 suffix 不能同時(shí)使用
suffixStyle | 尾部文本樣式 TextStyle
suffixIconConstraints | 尾部圖標(biāo)盒約束维费,效果不是很明顯
counter | 備注組件 Widget果元,位于輸入框右下角外側(cè),與 counterText 不能同時(shí)使用
counterText | 備注文本犀盟,位于輸入框右下角外側(cè)而晒,與 counter 不能同時(shí)使用
counterStyle | 備注文本樣式 TextStyle
filled | 是否填充
fillColor | 填充色
focusColor | 聚焦色
hoverColor | 鼠標(biāo)懸停色
errorBorder | 錯(cuò)誤邊框,errorText不為空阅畴,輸入框沒有焦點(diǎn)時(shí)顯示
focusedBorder | 輸入框開始輸入時(shí)的邊框欣硼,errorText為空時(shí)生效
focusedErrorBorder | errorText不為空時(shí),輸入框有焦點(diǎn)時(shí)的邊框
disabledBorder | 輸入框禁用時(shí)的邊框恶阴,errorText為空時(shí)生效
enabledBorder | 輸入框可用時(shí)的邊框诈胜,errorText為空時(shí)生效
border | 邊框
enabled | 輸入框是否可用,默認(rèn)為 true
semanticCounterText | counterText 的語(yǔ)義標(biāo)簽
alignLabelWithHint | 當(dāng) textField 為多行時(shí)冯事,居中對(duì)齊行為焦匈,默認(rèn)為 false

  /// The padding for the input decoration's container.
  ///
  /// The decoration's container is the area which is filled if [filled] is
  /// true and bordered per the [border]. It's the area adjacent to
  /// [decoration.icon] and above the widgets that contain [helperText],
  /// [errorText], and [counterText].
  ///
  /// By default the `contentPadding` reflects [isDense] and the type of the
  /// [border].
  ///
  /// If [isCollapsed] is true then `contentPadding` is [EdgeInsets.zero].
  ///
  /// If `isOutline` property of [border] is false and if [filled] is true then
  /// `contentPadding` is `EdgeInsets.fromLTRB(12, 8, 12, 8)` when [isDense]
  /// is true and `EdgeInsets.fromLTRB(12, 12, 12, 12)` when [isDense] is false`.
  /// If `isOutline` property of [border] is false and if [filled] is false then
  /// `contentPadding` is `EdgeInsets.fromLTRB(0, 8, 0, 8)` when [isDense] is
  /// true and `EdgeInsets.fromLTRB(0, 12, 0, 12)` when [isDense] is false`.
  ///
  /// If `isOutline` property of [border] is true then `contentPadding` is
  /// `EdgeInsets.fromLTRB(12, 20, 12, 12)` when [isDense] is true
  /// and `EdgeInsets.fromLTRB(12, 24, 12, 16)` when [isDense] is false.
  final EdgeInsetsGeometry contentPadding;

4. InputDecoration 詳解

4.1 容器創(chuàng)建

import 'package:flutter/material.dart';

class FMTextFieldVC extends StatefulWidget{
  @override
  FMTextFieldState createState() => FMTextFieldState();
}

class FMTextFieldState extends State<FMTextFieldVC>{
  @override
  Widget build(BuildContext context) {
    // TODO: implement build
    return Scaffold(
      appBar: AppBar(
        title: Text("TextField"),
      ),
      body: _listView(),
    );
  }

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

  TextField _textField(){
    return TextField(
      decoration: _decoration(),
    );
  }

  InputDecoration _decoration(){
    return InputDecoration(
    );
  }
}
Decoration none.png

4.2 填充色,以及填充文字

filled == true 時(shí)昵仅,fillColor 生效缓熟。

  InputDecoration _decoration(){
    return InputDecoration(
      fillColor: Colors.yellow.shade200,
      filled: true,
      errorText: "errorText",
      helperText: "helperText",
      labelText: "labelText",
      suffixText: "suffixText",
      counterText: "counterText",
      hintText: "hintText",
      prefixText: "prefixText",
      semanticCounterText: "semanticCounterText",
    );
  }
Decoration text.png

4.3 各個(gè)位置的 Text 屬性設(shè)置

  InputDecoration _decoration(){
    return InputDecoration(
      icon: Icon(Icons.print),

      fillColor: Colors.yellow.shade200,
      filled: true,

      errorMaxLines: 2,
      errorText: "ErrorText ErrorText ErrorText ErrorText ErrorText ErrorText ErrorText ErrorText ErrorText ErrorText ErrorText ",
      errorStyle: TextStyle( color: Colors.green, fontSize: 14),

      helperText: "helperText",
      helperMaxLines: 2,
      helperStyle: TextStyle( color: Colors.black, fontSize: 14),

      labelText: "labelText",
      labelStyle: TextStyle( color: Colors.red, fontSize: 14),


      suffixText: "suffixText",
      suffixStyle: TextStyle( color: Colors.grey, fontSize: 14),
      suffixIcon: Icon(Icons.ac_unit),

      counterText: "counterText",
      counterStyle: TextStyle( color: Colors.pink, fontSize: 14),

      hintText: "hintText",
      hintMaxLines: 2,
      hintStyle: TextStyle( color: Colors.orange, fontSize: 14),

      prefixText: "prefixText",
      prefixStyle: TextStyle( color: Colors.blue, fontSize: 14),
      prefixIcon: Icon(Icons.phone),

      // 沒啥明顯效果
      prefixIconConstraints: BoxConstraints(minWidth: 50),
      suffixIconConstraints: BoxConstraints(minWidth: 30, minHeight: 50),

      semanticCounterText: "semanticCounterText",

      contentPadding: EdgeInsets.fromLTRB(0, 30, 0, 30),

      floatingLabelBehavior: FloatingLabelBehavior.always
    );
  }
Decoration textStyle.png
Decoration textStyle helperText.png

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

InputDecoration 屬性較多,但是沒什么難點(diǎn)摔笤,多加使用即可掌握够滑。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市吕世,隨后出現(xiàn)的幾起案子彰触,更是在濱河造成了極大的恐慌,老刑警劉巖命辖,帶你破解...
    沈念sama閱讀 212,454評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件况毅,死亡現(xiàn)場(chǎng)離奇詭異分蓖,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)尔许,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門么鹤,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人味廊,你說(shuō)我怎么就攤上這事蒸甜。” “怎么了余佛?”我有些...
    開封第一講書人閱讀 157,921評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵柠新,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我衙熔,道長(zhǎng)登颓,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,648評(píng)論 1 284
  • 正文 為了忘掉前任红氯,我火速辦了婚禮框咙,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘痢甘。我一直安慰自己喇嘱,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評(píng)論 6 386
  • 文/花漫 我一把揭開白布塞栅。 她就那樣靜靜地躺著者铜,像睡著了一般。 火紅的嫁衣襯著肌膚如雪放椰。 梳的紋絲不亂的頭發(fā)上作烟,一...
    開封第一講書人閱讀 49,950評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音砾医,去河邊找鬼拿撩。 笑死,一個(gè)胖子當(dāng)著我的面吹牛如蚜,可吹牛的內(nèi)容都是我干的压恒。 我是一名探鬼主播,決...
    沈念sama閱讀 39,090評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼错邦,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼探赫!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起撬呢,我...
    開封第一講書人閱讀 37,817評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤伦吠,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體讨勤,經(jīng)...
    沈念sama閱讀 44,275評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡箭跳,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評(píng)論 2 327
  • 正文 我和宋清朗相戀三年晨另,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了潭千。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,724評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡借尿,死狀恐怖刨晴,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情路翻,我是刑警寧澤狈癞,帶...
    沈念sama閱讀 34,409評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站茂契,受9級(jí)特大地震影響蝶桶,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜掉冶,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評(píng)論 3 316
  • 文/蒙蒙 一真竖、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧厌小,春花似錦恢共、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至癣蟋,卻和暖如春透硝,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背疯搅。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工濒生, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人秉撇。 一個(gè)月前我還...
    沈念sama閱讀 46,503評(píng)論 2 361
  • 正文 我出身青樓甜攀,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親琐馆。 傳聞我的和親對(duì)象是個(gè)殘疾皇子规阀,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評(píng)論 2 350