You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
when I see Provide.dart ,In the 276 line ,
listenable = _getListenable(provider, value); I jump this method,
Listenable _getListenable(Provider provider, dynamic value) =>provider is Listenable ? provider : value is Listenable ? value : null;
I want to konw ,this provider when to extend Listenable?
The text was updated successfully, but these errors were encountered:
Sorry for the complete silence on this issue (and the repo in general). I've been unsure about the future of the provide package but now I've made the decision to let it go: #3 (comment). Please comment over at the linked issue if you have a strong desire to keep the development of this package alive (if so, please link to your fork if you have it).
To be clear, the package will always be available at https://pub.dev/packages/provide — pub doesn't allow packages to "disappear". It won't be updated, though.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
when I see Provide.dart ,In the 276 line ,
listenable = _getListenable(provider, value); I jump this method,
Listenable _getListenable(Provider provider, dynamic value) =>provider is Listenable ? provider : value is Listenable ? value : null;
I want to konw ,this provider when to extend Listenable?
The text was updated successfully, but these errors were encountered: