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

Flutter - Set search hint style of SearchDelegate

看了一下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
      ),
    );
  }