-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates for Flutter 3.16.0/Dart 3.2 #64
Comments
The issue is caused by Entries can only be inserted if the OverlayState is mounted, which is false: bool _debugCanInsertEntry(OverlayEntry entry) {
...
if (!mounted) {
throw FlutterError.fromParts(<DiagnosticsNode>[
ErrorSummary('Attempted to insert an OverlayEntry to an already disposed Overlay.'),
...operandsInformation,
]);
}
...
} Full error
|
Hello, |
@Tregan thanks for the provided details, are you interested in contributing a fix? |
I only took a quick look at it yesterday but wasn't able to figure out an immediate fix, and sadly I can't say for certain when I'll have time to take a better look at it - my company requires me to focus on other things at the moment 😞 |
Found some time at the end of the work week, created a PR: #65 |
This has been resolved by #65, and will be released soon on the next version. |
Need to update to the latest versions of Flutter and Dart
The text was updated successfully, but these errors were encountered: