-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document "The webOnlyWarmupEngine API is deprecated and will be remov…
…ed in a future release"
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |