riverpod icon indicating copy to clipboard operation
riverpod copied to clipboard

A reactive caching and data-binding framework. Riverpod makes working with asynchronous code a breeze.

Results 227 riverpod issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Pull to refresh causes application UI on iOS to stutter. **To Reproduce** ``` RefreshIndicator( onRefresh: () async { HapticFeedback.lightImpact(); await ref.refresh(eventsBetweenProvider( start: dateTimeRange.start, end: dateTimeRange.end, notClockedIn: false)...

bug
question

## Related Issues fixes https://github.com/rrousselGit/riverpod/issues/3189 ## Checklist Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (`[x]`). - [x] I have...

**Describe the bug** This example has got two providers, one state provider, which persists the entered text, and a view model provider, which forwards the entered text from the state...

bug

**Describe the bug** If a I tap on a item from a ListView and pressed the back button the widget is disposed as expected and the provider ref.onRemoveListener is called...

bug
question

This one is a little difficult to put into words. I have a scenario where a widget watches a provider that uses a chain of providers. Within on of these...

bug

For real this time

TL;DR: in a Flutter application, we have different paginated lists which can possibly _overlap_, i.e. an `Item` could appear in `myItems(page: 2)`, `favoriteItems(page: 0)`, `searchedItems(page: 7)`, ... We want a...

enhancement
needs triage

## Background In https://riverpod.dev website, code snippets are plain `.dart` files that are then imported using the syntax: ```mdx import myCodeSnippet from "!!raw-loader!./path/to/coode_snippet.dart"; ``` Then passed to ``/``/``. An example...

documentation
help wanted
good first issue

Currently, if a provider is marked as "autoDispose", it has some voluntary impacts on the type system. Such that: - a non-autoDispose provider cannot watch an autoDispose provider - only...

enhancement
breaking

# Description In release mode (but not debug mode), I am seeing a `FutureProvider` being invalidated while its building, which results in the `FutureProvider` built twice and "weird" consequences. While...

bug