flutter - 在 Flutter 中的 TabBar 顶部添加指示器

喜欢这个:

下面的代码会在TabBar底部添加Indicator:

  DefaultTabController(
    length: 2,
    child : new TabBar(
      labelColor: Colors.purple,
      indicatorColor: Colors.purple,
      indicatorSize: TabBarIndicatorSize.label,
      unselectedLabelColor: Colors.black,
    tabs: [
        new Tab(icon: Icon(Icons.chrome_reader_mode),),
        new Tab(icon: Icon(Icons.clear_all),),
    ]),
  );

但我需要 IndicatorTabBar 之上。我认为构建自定义标签栏不是一个好主意,因为我不想为这个简单的事情做很多工作。

最佳答案

有一个简单的技巧,那就是使用 indicator属性并添加 UnderlineTabIndicator() 并且该类具有名为 insets 的命名参数,并且我添加了 EdgeInsets.fromLTRB(50.0, 0.0, 50.0, 40.0) 作为值,

Left: 50.0, // make indicator small by 50.0 from left

Top: 0.0,

Right: 50.0, // make indicator small by 50.0 from right

Bottom: 40.0 // pushed indicator to top by 40.0 from bottom

如下:

const textStyle = TextStyle(
    fontSize: 12.0,
    color: Colors.white,
    fontFamily: 'OpenSans',
    fontWeight: FontWeight.w600);

//.....
new TabBar(
  controller: controller,
  labelColor: Color(0xFF343434),
  labelStyle: textStyle.copyWith(
      fontSize: 20.0,
      color: Color(0xFFc9c9c9),
      fontWeight: FontWeight.w700),
  indicator: UnderlineTabIndicator(
    borderSide: BorderSide(color: Color(0xDD613896), width: 8.0),
    insets: EdgeInsets.fromLTRB(50.0, 0.0, 50.0, 40.0),
  ),
  unselectedLabelColor: Color(0xFFc9c9c9),
  unselectedLabelStyle: textStyle.copyWith(
      fontSize: 20.0,
      color: Color(0xFFc9c9c9),
      fontWeight: FontWeight.w700),
  tabs: [
    new Tab(
      text: 'LOGIN',
    ),
    new Tab(
      text: 'SIGNUP',
    ),
  ],
),

您还可以创建自定义指标扩展 Decoration

https://stackoverflow.com/questions/51125056/

相关文章:

dart - 如何在 flutter 中拆分 Dart 类?

dart - 如何在 flutter 搜索页面小部件中消除搜索建议?

dart - Flutter:从 Activity 上下文外部调用 startActivity()

flutter - Flutter 是否也在 iOS 上使用 Skia 进行渲染?

dart - 为什么 cupertino_icons 中的图标很少?

dart - flutter 构造函数错误

dart - Navigator routes 清除flutter的堆栈

dart - Flutter:启动时共享首选项为空

dart - Flutter:获取 HTML 页面的某些元素

dart - setState Dart/Flutter 中带有花括号的胖箭头符号