Last updated:
0 purchases
fast rx flutter
Reactive Flutter widgets and convenience components for fast_rx
Features #
Class
Use-case
FastBuilder
Rebuilds when reactive values within change
Usage #
import 'package:fast_rx_flutter/fast_rx_flutter.dart';
import 'package:flutter/material.dart';
void example() {
// ...
final count = 0.rx;
// ...
// ignore: avoid_print
count.stream.listen(print);
// ...
FastBuilder(() => Text('$count'));
FastBuilder(
() => Text('$count'),
condition: () => true,
);
// ...
// Will print the value and trigger a rebuild of FastBuilders
count.value = 1;
final list = <int>[].rx;
// Will only notify after the run block completes
list.run(() {
list.add(1);
list.add(2);
});
}
copied to clipboard
See fast_rx for more documentation
Additional information #
See fast_ui for more information
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.