Flutter - 自定義tab底部線條寬度

emm .劃個(gè)水

TabBar未提供底部線條寬度的修改致盟,平常肯定不會(huì)用默認(rèn)的啦
copy默認(rèn)的UnderlineTabIndicator的所有代碼,進(jìn)行一點(diǎn)修改
如下:

import 'package:flutter/material.dart';

class WDUnderlineTabIndicator extends Decoration {
  /// Create an underline style selected tab indicator.
  ///
  /// The [borderSide] and [insets] arguments must not be null.
  WDUnderlineTabIndicator({
    this.borderSide = const BorderSide(width: 2.0, color: Colors.white),
    this.insets = EdgeInsets.zero,
    this.customWidth
  }) : assert(borderSide != null),
        assert(insets != null);

  ///自定義寬度
  double? customWidth;

  /// The color and weight of the horizontal line drawn below the selected tab.
  final BorderSide borderSide;

  /// Locates the selected tab's underline relative to the tab's boundary.
  ///
  /// The [TabBar.indicatorSize] property can be used to define the tab
  /// indicator's bounds in terms of its (centered) tab widget with
  /// [TabBarIndicatorSize.label], or the entire tab with
  /// [TabBarIndicatorSize.tab].
  final EdgeInsetsGeometry insets;

  @override
  Decoration? lerpFrom(Decoration? a, double t) {
    if (a is UnderlineTabIndicator) {
      return UnderlineTabIndicator(
        borderSide: BorderSide.lerp(a.borderSide, borderSide, t),
        insets: EdgeInsetsGeometry.lerp(a.insets, insets, t)!,
      );
    }
    return super.lerpFrom(a, t);
  }

  @override
  Decoration? lerpTo(Decoration? b, double t) {
    if (b is UnderlineTabIndicator) {
      return UnderlineTabIndicator(
        borderSide: BorderSide.lerp(borderSide, b.borderSide, t),
        insets: EdgeInsetsGeometry.lerp(insets, b.insets, t)!,
      );
    }
    return super.lerpTo(b, t);
  }

  @override
  BoxPainter createBoxPainter([ VoidCallback? onChanged ]) {
    return _WDUnderlinePainter(this, onChanged);
  }

  Rect _indicatorRectFor(Rect rect, TextDirection textDirection) {
    assert(rect != null);
    assert(textDirection != null);
    final Rect indicator = insets.resolve(textDirection).deflateRect(rect);

    if (customWidth != null) {
      ///修改自定義寬度
      double w = (indicator.left + indicator.right) / 2;
      return Rect.fromLTWH(w - customWidth! / 2,
          indicator.bottom - borderSide.width, customWidth!, borderSide.width);
    }else{
      return Rect.fromLTWH(
        indicator.left,
        indicator.bottom - borderSide.width,
        indicator.width,
        borderSide.width,
      );
    }
  }

  @override
  Path getClipPath(Rect rect, TextDirection textDirection) {
    return Path()..addRect(_indicatorRectFor(rect, textDirection));
  }
}

class _WDUnderlinePainter extends BoxPainter {
  _WDUnderlinePainter(this.decoration, VoidCallback? onChanged)
      : assert(decoration != null),
        super(onChanged);

  final WDUnderlineTabIndicator decoration;

  @override
  void paint(Canvas canvas, Offset offset, ImageConfiguration configuration) {
    assert(configuration != null);
    assert(configuration.size != null);
    final Rect rect = offset & configuration.size!;
    final TextDirection textDirection = configuration.textDirection!;
    final Rect indicator = decoration._indicatorRectFor(rect, textDirection).deflate(decoration.borderSide.width / 2.0);
    final Paint paint = decoration.borderSide.toPaint()..strokeCap = StrokeCap.square;
    canvas.drawLine(indicator.bottomLeft, indicator.bottomRight, paint);
  }
}
測試一下效果:
final List tabs = ["首頁", "設(shè)備", "我的"];

TabBar(
                unselectedLabelColor: Colors.grey,
                unselectedLabelStyle: TextStyle(
                    fontSize: 16, fontWeight: FontWeight.normal),
                labelColor: Colors.red,
                labelStyle: TextStyle(
                    fontSize: 24, fontWeight: FontWeight.bold),
                controller: TabController(length: tabs.length, vsync: this),
                isScrollable: true,
                indicator: WDUnderlineTabIndicator(
                  customWidth: 30,
                  borderSide:
                  BorderSide(width: 2, color: Color(0xFF544693)),
                ),
                enableFeedback: false,
                padding: EdgeInsets.only(right: 416),
                tabs: tabs.map((e) => Tab(text: e,)).toList())

image.png
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末阻问,一起剝皮案震驚了整個(gè)濱河市皇钞,隨后出現(xiàn)的幾起案子跨细,更是在濱河造成了極大的恐慌砚偶,老刑警劉巖挪钓,帶你破解...
    沈念sama閱讀 206,126評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件是越,死亡現(xiàn)場離奇詭異,居然都是意外死亡碌上,警方通過查閱死者的電腦和手機(jī)倚评,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門浦徊,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人天梧,你說我怎么就攤上這事盔性。” “怎么了呢岗?”我有些...
    開封第一講書人閱讀 152,445評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵冕香,是天一觀的道長。 經(jīng)常有香客問我后豫,道長悉尾,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,185評(píng)論 1 278
  • 正文 為了忘掉前任挫酿,我火速辦了婚禮构眯,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘饭豹。我一直安慰自己鸵赖,他們只是感情好务漩,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,178評(píng)論 5 371
  • 文/花漫 我一把揭開白布拄衰。 她就那樣靜靜地躺著,像睡著了一般饵骨。 火紅的嫁衣襯著肌膚如雪翘悉。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 48,970評(píng)論 1 284
  • 那天居触,我揣著相機(jī)與錄音妖混,去河邊找鬼。 笑死轮洋,一個(gè)胖子當(dāng)著我的面吹牛制市,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播弊予,決...
    沈念sama閱讀 38,276評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼祥楣,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了汉柒?” 一聲冷哼從身側(cè)響起误褪,我...
    開封第一講書人閱讀 36,927評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎碾褂,沒想到半個(gè)月后兽间,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,400評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡正塌,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,883評(píng)論 2 323
  • 正文 我和宋清朗相戀三年嘀略,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了恤溶。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 37,997評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡帜羊,死狀恐怖宏娄,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情逮壁,我是刑警寧澤孵坚,帶...
    沈念sama閱讀 33,646評(píng)論 4 322
  • 正文 年R本政府宣布,位于F島的核電站窥淆,受9級(jí)特大地震影響卖宠,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜忧饭,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,213評(píng)論 3 307
  • 文/蒙蒙 一扛伍、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧词裤,春花似錦刺洒、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至渔肩,卻和暖如春因俐,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背周偎。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評(píng)論 1 260
  • 我被黑心中介騙來泰國打工抹剩, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蓉坎。 一個(gè)月前我還...
    沈念sama閱讀 45,423評(píng)論 2 352
  • 正文 我出身青樓澳眷,卻偏偏與公主長得像,于是被迫代替她去往敵國和親蛉艾。 傳聞我的和親對(duì)象是個(gè)殘疾皇子钳踊,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,722評(píng)論 2 345

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