颤动:SliverAppBar底部TabBar未显示/溢出/隐藏

时间:2017-12-11 09:46:23

标签: dart flutter

Flutter - SliverAppBar TabBar未显示

起初我认为这个问题与flexibleSpace有关,所以我对它进行了评论,但黄色+黑色边框仍然存在。

https://youtu.be/FcNMTg6ok4s

Youtube VIDEO ^^^

enter image description here

enter image description here

id    price
1       10
1       10
1       10
2       30
2       33
2       30
3       15
3       15 
3       15

1 个答案:

答案 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!

_