Replies: 2 comments 1 reply
-
I am definitely going to attempt something for a react query style set of helpers. It might be a separate package in the repo but I think it would be very useful. What are some proposed APIs you would like to see when working with it in flutter? |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Maybe I'm too much pining for a TanStack Query / ReactQuery (which is absolutely wonderful thing to work with in web) equivalent in the Flutter ecosystem but I keep coming back to trying to recreate one with different Flutter reactive state management solutions. Riverpod gets pretty close with the
.family
constructor. Some sort ofuseMutation
equivalent would be really nice for Signals.I wonder if such kind of approach could be on the roadmap? Whether having futureSignal take argument(s) or some other solution. I look at the crud_dio example and to me it's like a case of close but no cigar. Dart is multi-paradigm language but the whole functions are first-class citizens aspect seems to not get much notice (Kotlin ecosystem has the same problem).
Beta Was this translation helpful? Give feedback.
All reactions