🥺Flutter 2.5.0に上げたらAppBarのテキストカラーが変わってしまった2021/09/18に公開FlutterDartmemotech解決策:appBarThemeを追記してあげる。 before: primaryTextTheme: TextTheme().copyWith( headline6: TextStyle(color: Colors.white), ) after: appBarTheme: AppBarTheme(titleTextStyle: TextStyle( color: Colors.white, fontSize: 22, fontWeight: FontWeight.bold )) フォントサイズの指定とかちょっと面倒くさかった。 https://stackoverflow.com/questions/69140787/theme-themedata-apparently-ignored-starting-with-flutter-2-5-0 Discussion
Discussion