diff --git a/docs.json b/docs.json index b0dd37d5..15586713 100644 --- a/docs.json +++ b/docs.json @@ -65,6 +65,10 @@ [ "Can't run build_runner due to BuildForInputLogger error", "/faq/build-runner-error-BuildForInputLogger" + ], + [ + "The webOnlyWarmupEngine API is deprecated and will be removed in a future release", + "/faq/webOnlyWarmupEngine-deprecated" ] ] ], diff --git a/docs/faq/webOnlyWarmupEngine-deprecated.mdx b/docs/faq/webOnlyWarmupEngine-deprecated.mdx new file mode 100644 index 00000000..d4d0898b --- /dev/null +++ b/docs/faq/webOnlyWarmupEngine-deprecated.mdx @@ -0,0 +1,14 @@ +# The webOnlyWarmupEngine API is deprecated and will be removed in a future release + +After upgrading to Flutter stable 3.13, the following log appears when running the app on Flutter web: + +``` +The webOnlyWarmupEngine API is deprecated and will be removed in a future release. Please use `bootstrapEngine` from `dart:ui_web` instead. +The debugEmulateFlutterTesterEnvironment getter is deprecated and will be removed in a future release. Please use `debugEmulateFlutterTesterEnvironment` from `dart:ui_web` instead. +``` + +This can be ignored as it's just a warning. + +More info here: + +- ["webOnlyWarmupEngine API is deprecated" log on latest stable (3.13) #132809](https://github.com/flutter/flutter/issues/132809) \ No newline at end of file