Skip to content

A simple way to access state while robust and testable.

License

Notifications You must be signed in to change notification settings

gitslav/riverpod

This branch is 434 commits behind rrousselGit/riverpod:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e626a0e · Dec 6, 2023
Nov 26, 2023
Jan 11, 2023
Oct 29, 2023
Dec 6, 2023
Sep 4, 2023
May 12, 2022
Jun 20, 2023
Dec 1, 2023
Oct 11, 2023
Feb 27, 2022
Nov 13, 2023
Apr 17, 2020
Oct 30, 2023
Dec 6, 2023
Feb 8, 2023
Dec 21, 2022
Oct 11, 2023
Mar 13, 2023

Repository files navigation

Build Status codecov Star on Github License: MIT Discord

Deploys by Netlify

Riverpod


A reactive caching and data-binding framework. https://riverpod.dev
Riverpod makes working with asynchronous code a breeze by:

  • handling errors/loading states by default. No need to manually catch errors
  • natively supporting advanced scenarios, such as pull-to-refresh
  • separating the logic from your UI
  • ensuring your code is testable, scalable and reusable
riverpod pub package
flutter_riverpod pub package
hooks_riverpod pub package

Welcome to Riverpod (anagram of Provider)!

For learning how to use Riverpod, see its documentation:
>>> https://riverpod.dev <<<

Long story short:

  • Define network requests by writing a function annotated with @riverpod:

    @riverpod
    Future<String> boredSuggestion(BoredSuggestionRef ref) async {
      final response = await http.get(
        Uri.https('https://boredapi.com/api/activity'),
      );
      final json = jsonDecode(response.body);
      return json['activity']! as String;
    }
  • Listen to the network request in your UI and gracefully handle loading/error states.

    class Home extends ConsumerWidget {
      @override
      Widget build(BuildContext context, WidgetRef ref) {
        final boredSuggestion = ref.watch(boredSuggestionProvider);
        // Perform a switch-case on the result to handle loading/error states
        return boredSuggestion.when(
          loading: () => Text('loading'),
          error: (error, stackTrace) => Text('error: $error'),
          data: (data) => Text(data),
        );
      }
    }

Contributing

Contributions are welcome!

Here is a curated list of how you can help:

  • Report bugs and scenarios that are difficult to implement
  • Report parts of the documentation that are unclear
  • Fix typos/grammar mistakes
  • Update the documentation or add examples
  • Implement new features by making a pull-request

Sponsors

About

A simple way to access state while robust and testable.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 64.1%
  • MDX 33.3%
  • TypeScript 1.2%
  • JavaScript 1.2%
  • SCSS 0.2%
  • CSS 0.0%