Flutter 升级到 2.5.3 导致弃用问题
Flutter upgrade to 2.5.3 causing deprecated issue
我已经能够将我的代码从 flutter 1.2.0 升级到 2.5.3。我仍然收到一些已弃用的警告,如下所述:
info • 'buttonColor' 已弃用,不应使用。不再被框架使用,
请删除对它的任何引用。此功能在 v2.3.0-0.2.pre 后已弃用。
•
请帮我提出 buttonColor 的修复建议。
谢谢
https://docs.flutter.dev/release/breaking-changes/buttons
这里有官方文档的详细解释。
如果您还有疑问,请随时提问。
您可以使用 ButtonTheme.
而不是 buttonColor
ThemeData(
appBarTheme: appBarTheme,
scaffoldBackgroundColor: scaffoldBackgroundColor,
primarySwatch: primarySwatch,
textTheme: textTheme,
buttonTheme: ButtonThemeData(buttonColor: AppColor.appBlueColor)
)
在 ThemeData class 上阅读更多内容。
我已经能够将我的代码从 flutter 1.2.0 升级到 2.5.3。我仍然收到一些已弃用的警告,如下所述:
info • 'buttonColor' 已弃用,不应使用。不再被框架使用, 请删除对它的任何引用。此功能在 v2.3.0-0.2.pre 后已弃用。 •
请帮我提出 buttonColor 的修复建议。 谢谢
https://docs.flutter.dev/release/breaking-changes/buttons
这里有官方文档的详细解释。
如果您还有疑问,请随时提问。
您可以使用 ButtonTheme.
而不是buttonColor
ThemeData(
appBarTheme: appBarTheme,
scaffoldBackgroundColor: scaffoldBackgroundColor,
primarySwatch: primarySwatch,
textTheme: textTheme,
buttonTheme: ButtonThemeData(buttonColor: AppColor.appBlueColor)
)
在 ThemeData class 上阅读更多内容。