Last updated:
0 purchases
patapata riverpod
Patapata - Riverpod
Add support for Riverpod to your Patapata app.
About #
This package is a plugin for Patapata that adds support for Riverpod to your Patapata app.
It will automatically inject your app's environment into your Riverpod providers.
Getting started #
Add the dependency to your pubspec.yaml file
flutter pub add patapata_riverpod
copied to clipboard
Import the package
import 'package:patapata_riverpod/patapata_riverpod.dart';
copied to clipboard
Activate the plugin
void main() {
App(
environment: const Environment(),
plugins: [
RiverpodPlugin(),
],
)
.run();
}
copied to clipboard
See the providers you can use by reading the API documentation.
Contributing #
Check out the CONTRIBUTING guide to get started.
License #
See the LICENSE file
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.