2.5.0으로 올리면 AppBar의 텍스트 색상이 바뀝니다.

2050 단어 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

좋은 웹페이지 즐겨찾기