snapsl
snapsl
Hi, I wanted to know if there is plans to further support this package and implement new features like material 3 [layout](https://m3.material.io/foundations/layout/understanding-layout/overview). Since adaptive_breakpoints have been discontinued, this package could...
**Make riverpod onboarding easier.** A great feature of riverpod is that we can easily implement dependency injection. But this is not described in the documentation. The documentation should contain: How-To...
**Make riverpod onboarding easier.** AsyncValue is a core feature of riverpod when we use AsyncNotifier / FutureProvider, but is not explained in the documentation. Currently new user have to look...
This PR updates [dots_indicator](https://pub.dev/packages/dots_indicator) dependency to 3.0.0.
Maintainers of dev container features may discontinue the support of their container. This should be detected and resolved automatically.
The current dev container features [list](https://containers.dev/features) contains entries from the example template.
### Please confirm these before moving forward. - [X] I have searched for my feature proposal and have not found a work-in-progress/duplicate/resolved/discarded issue. - [X] This proposal is a completely...
**Is your feature request related to a problem? Please describe.** #3651 **Describe the solution you'd like** Here is how riverpod currently recomments implementing a pull to refresh. ```dart RefreshIndicator( onRefresh:...
How to implement optimistic updates with Riverpod mutations?
### Description Currently, riverpod gives access to the mutated state using `ref.listen()`/`ref.watch()`. ```dart @riverpod ref.listen(todoListProvider.addTodo, (_, addTodo) { switch(addTodo.state) { ... _=> defaultHandle(); } }); ``` ### Suggestion Riverpod should...