-
-
Notifications
You must be signed in to change notification settings - Fork 468
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
🐛 Scrollbar This widget has been unmounted, so the State no longer has a context (and should be considered defunct). #71
Comments
This issue is happening since I ever implemented scrollbars. It happens when we resize the window I think. Tho, this is a Flutter issue. It happens on |
Seems like it is fixed on the flutter master branch |
I met the same problem |
Seems to be fixed with: child: Scrollbar(
controller: pane.scrollController ?? ScrollController(),
...
) At these lines: https://github.com/bdlukaa/fluent_ui/blob/master/lib/src/controls/navigation/navigation_view/pane.dart#L340 But after that, I've the following error (only at the changement
|
flutter/flutter#92657 seems to have fixed it. Tho it might take a while to land on stable |
it is fixed on the flutter master branch. flutter channel master |
@bdlukaa what about this ? I got that with TabView... :( |
me too, so what's the solution for TabView? flutter version: 2.10.5 |
I get the following error message using a
NavigationBody
(which contains two views):To be honest, I'm a little baffled. The error seems to be related to the
NavigationBody
(since I don't get the error when using a regular MaterialScaffold
). I tried addingAutomaticKeepAliveClientMixin
s to the views of theNavigationBody
but that didn't help.Have any of you ever experienced something similar?
The text was updated successfully, but these errors were encountered: