我设法改变了 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搜索栏中输入一些东西,颜色仍然是黑色的......。
我怎样才能正确地改变 textcolor
在 SearchDelegate
类?
在 appBarTheme
核对 textTheme
属性。
改变 headline6
程式中的文字风格 ThemeData
:
MaterialApp(
theme: ThemeData(
textTheme: TextTheme(
headline6: TextStyle(color: 'Your Prefered Color'))
),
home: Home()
);