Flutter TabBar自定义指标

时间:2020-06-18 01:41:07

标签: flutter tabs shadow tabbarcontroller

要了解我要实现的目标,请查看屏幕截图: enter image description here

但是如您所见,选项卡的阴影无法容纳在选项卡内。 那么如何为阴影留出空间?

这是我建立标签页的方法:

filterfalse

}

这就是我构建TabBar的方式:

Tab buildTab(CategoryModel category) {
return Tab(child: ConstrainedBox(
  constraints: BoxConstraints(
    minWidth: 48,
  ),
  child: Container(
    //color: Colors.green,
    child: Text(category.name, textAlign: TextAlign.center,),
  ),
),);

1 个答案:

答案 0 :(得分:0)

标签栏代码的父项吗? 当我测试时,效果很好。

enter image description here