rx_bloc_list 5.0.1 rx_bloc_list: ^5.0.1 copied to clipboard
The rx_bloc_list package facilitates implementing infinity scroll and pull-to-refresh features with minimal setup. This package is meant to be used along with RxBloc ecosystem.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add rx_bloc_list
copied to clipboard
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
rx_bloc_list: ^5.0.1
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:rx_bloc_list/rx_bloc_list.dart';
copied to clipboard