0

如果我想通过 MaterialApp 主题参数设置常规应用栏标题的样式,我会执行以下操作:

 ThemeData(appBarTheme: const AppBarTheme(
  textTheme: TextTheme(
    headline6: TextStyle(
      color: Colors.red,
      fontWeight: FontWeight.w600,
      fontSize: 37,
    ),
  ),
),

但是,我似乎无法弄清楚如何为 SliverAppBar 做同样的事情。我知道您可以简单地设置分配给 SliverAppBar 小部件中 title 参数的 Text 小部件的样式,但我正在尝试查看是否可以从应用程序的自定义主题中获得相同的结果。

4

0 回答 0