-
Notifications
You must be signed in to change notification settings - Fork 58
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
Question about use of Future Signal. #267
Comments
Why not put that logic inside the future signal? This is create a new signal every time that will break subscribers. If you want to do it manually there is also AsyncSignal |
Why I'm getting this error : flutter: signal warning: [4|null] has been read after disposed: #0 Signal.value (package:signals_core/src/core/signal.dart:292:97) When doing these changes : void onRetry() { |
Because autoDispose is set to true, try removing that |
Same issue, I've tried removing autoDispose and set the autoDispose to false, but same issue occurs. |
Can you provide a minimal code example to reproduce the issue? |
Also try hot restart instead of hot reload to see if the issue still persists |
If you are looking to pass args to update a future signal then you need to use computedAsync and computedFrom |
If we need to change the value of FutureSignal then how we can do this,I have searched all across the web, but haven't find any solution, like this.
The text was updated successfully, but these errors were encountered: