Flutter - SliverAppBar TabBar未显示
起初我认为这个问题与flexibleSpace有关,所以我对它进行了评论,但黄色+黑色边框仍然存在。
Youtube VIDEO ^^^
id price
1 10
1 10
1 10
2 30
2 33
2 30
3 15
3 15
3 15
答案 0 :(得分:0)
我将扑扑升级到最新版本。
问题仍然存在。
我使用以下代码作为MaterialApp的ThemeData:
primaryColor: Colors.blue[200],
primaryTextTheme: new TextTheme(
title: new TextStyle(
fontSize: 20.0,
color: Colors.white,
),
),
primaryIconTheme: new IconThemeData(
color: Colors.white,
),
我将其替换为:
primarySwatch: Colors.blue,
现在我可以看到TabBar!
_