概要
Flutterのバージョンアップ対応で、v3.19からTextThemeクラスのTextStyleが非推奨になっていたので、まとめました。
bodyText1や、headline1、subtitile1は非推奨になり他のプロパティ名へ移行されています。
警告コード
The getter 'bodyText1' is isn't defined for the type TextTheme. Try importing the library that defined 'bodyText1', correcting the name to the name of an .....
新旧API対応表
非推奨 | 新API |
---|---|
headline1 | displayLarge |
headline2 | displayMedium |
headline3 | displaySmall |
headline4 | headlineMedium |
headline5 | headlineSmall |
headline6 | titleLarge |
subtitle1 | titleMedium |
subtitle2 | titleSmall |
bodyText1 | bodyLarge |
bodyText2 | bodyMedium |
caption | bodySmall |
button | labelLarge |
overline | labelSmall |
- Themedataに関しても変更があるので公式ページを参考にしてください
参考