How do I pass a FirebaseAuth user to a StreamProvider in riverpod? When using old provider package, I used to get the user.uid from FirebaseAuth and pass the v...
I'm creating an app and I'm using AutoTabs so I can have different widget tree and be able to move between them without losing state from one tree to another. I...
As described in the Riverpod docs, a Riverpod provider can watch other providers to make a processing pipeline. I have something like this: <pre...
I've recently created my own customized widget and its state is handled by using riverpod with a predefined data type now I want to choose the type of data from...
I am new to using RiverPod. previously I used Provider for state management. in case of provider I could use a provider outside widget tree to get value using s...
I am using riverpod for state management. <pre><code>class SignInStateNotifier extends StateNotifier<SignInFormStates> { SignInStateNotifier(this._authFaca...
Does autoDispose in Riverpod's StateProvider disposes controllers? Does both the following statements works similarly? <pre><code>final _controller = StateProvider...
I'm developing a fairly complex cross-platform (Android / iOS / web) app in Flutter. I'm new to Flutter, coming to it from a background of native development for Andro...
I am creating my own comment system. I am using firebase to store the comments and then the replies into a subcollection. My code is retrieving the main comments, but...
I am new to flutter and recently I decided to look into providers to be able to reuse some sqlite DB calls I have using <a href="https://stackoverflow.com/questions/66...
I tried to process user input and update the localvalue in statenotifier which listens and its state is of AsyncValue. The problem is that, updating the value of local...
I'm trying to follow the example docs on how to combine Providers using Flutter & Riverpod to filter a list of items. The data is coming from Firestore using Strea...
The UI of my app is not updating when I know for a fact the state is changing. I am using the <code>watch</code> method from Riverpod to handle this, but the changes d...
<strong>I am confused that will <em>Nested ProviderScope</em> and all <em>Providers</em> be romoved from memory? And is following usecase good practice or bad practice...
Something is wrong with this code, but I can not figure out what is it. The problem is that <code>loading</code> is executed, the Future finishes successfully a...