但是如您所见,选项卡的阴影无法容纳在选项卡内。 那么如何为阴影留出空间?
这是我建立标签页的方法:
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,),
),
),);