Describe what scenario you think is uncovered by the existing examples/articles
Hello, thanks for creating this amazing library. I am coming from reactjs world and with react, I use recoil for handling global state and in recoil, there is an atomFamily hook.
What is does is that just like riverpod provider, you can declare a state and pass it an id. And based on the id, the state can hold unique data.
So, I can have on atomFamily declaration and I can declare this state anywhere and pass unique id. Then I can put data in the state based on id. And the state will return only data for a given id.
I just want to know if that is the same concept with riverpod family provider. Because I really need that functionality in flutter global statement library.
Describe what scenario you think is uncovered by the existing examples/articles Hello, thanks for creating this amazing library. I am coming from reactjs world and with react, I use recoil for handling global state and in recoil, there is an atomFamily hook.
What is does is that just like riverpod provider, you can declare a state and pass it an id. And based on the id, the state can hold unique data.
So, I can have on atomFamily declaration and I can declare this state anywhere and pass unique id. Then I can put data in the state based on id. And the state will return only data for a given id.
I just want to know if that is the same concept with riverpod family provider. Because I really need that functionality in flutter global statement library.
Thanks.