Flutter - 如何改变搜索委托类的textcolor?

问题描述 投票:0回答:1

我设法改变了 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 类?

flutter dart colors flutter-layout textcolor
1个回答
0
投票

appBarTheme 核对 textTheme 属性。


0
投票

改变 headline6 程式中的文字风格 ThemeData :

MaterialApp(
      theme: ThemeData(
      textTheme: TextTheme(
          headline6: TextStyle(color: 'Your Prefered Color'))
      ),
      home: Home()
    );
© www.soinside.com 2019 - 2024. All rights reserved.