gpt4 book ai didi

Flutter - 如何更改搜索委托(delegate)类中的文本颜色?

转载 作者:行者123 更新时间:2023-12-03 02:48:05 26 4
gpt4 key购买 nike

我设法更改了 hintStyle -颜色

hintstyle

@override
ThemeData appBarTheme(BuildContext context) {
return ThemeData(
primaryColor: kPrimaryColor,
primaryIconTheme: IconThemeData(
color: Colors.white,
),
inputDecorationTheme: InputDecorationTheme(
hintStyle:
Theme.of(context).textTheme.title.copyWith(color: Colors.white),
),
);
}

但是,如果我在 appbar 搜索字段中输入一些内容,颜色仍然是黑色...

enter image description here

如何正确更改 textcolorSearchDelegate类(class)?

最佳答案

使用 SearchDelegate 您可以自定义搜索的文本提示值和颜色以及查询的颜色和大小。为达到这个:
搜索的文本提示值 --> 您可以覆盖作为字符串的 searchFieldLabel。

@override
String get searchFieldLabel => 'Your Custom Hint Text...';
搜索的颜色 --> 您可以使用 Theme 类的 hintColor 属性覆盖:
@override
ThemeData appBarTheme(BuildContext context) {
return Theme.of(context).copyWith(
hintColor: Colors.white,
);
}
查询的文本颜色和大小 --> 您需要覆盖委托(delegate)的 appBarTheme 方法并更改您需要的内容。要更改查询的文本颜色,请将 textTheme 设置为 标题6 :
@override
ThemeData appBarTheme(BuildContext context) {
assert(context != null);
final ThemeData theme = Theme.of(context).copyWith(
textTheme: TextTheme(
headline6: TextStyle(
color: Colors.white,
fontSize: 18.0,
),
),
);
assert(theme != null);
return theme;
}

关于Flutter - 如何更改搜索委托(delegate)类中的文本颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62322535/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com