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())