Flutter-设置SearchDelegate的搜索提示样式



查看Flutter的源代码,我可以看到这只能使用theme.inputDecorationTheme.hintStyle来推断,有什么方法可以简单地将其传递给构造函数吗?

EDIT:目前没有任何方法,只能覆盖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
),
);
}

相关内容

  • 没有找到相关文章

最新更新