rive_bloc 0.0.4
rive_bloc: ^0.0.4 copied to clipboard
A Simplified Flutter BLoC API Layer, Deeply Inspired by Riverpod. RiveBloc makes working with BLoC less verbose and less time-consuming.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add rive_bloc
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
rive_bloc: ^0.0.4
copied to clipboard
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:rive_bloc/rive_bloc.dart';
copied to clipboard