查看 Flutter 的源代码,我可以看到只能使用theme.inputDecorationTheme.hintStyle来推断,有没有办法简单地将它传递给构造函数?
编辑:目前没有办法做到这一点,只能覆盖appBarTheme方法。我关闭了线程,因为这似乎是实现它的唯一方法。
有一种方法可以覆盖
@override
ThemeData appBarTheme(BuildContext context) {
assert(context != null);
final ThemeData theme = Theme.of(context);
assert(theme != null);
return theme.copyWith(
inputDecorationTheme: theme.inputDecorationTheme.copyWith(
hintStyle: ..., // <=() here
),
);
}