fast_rx 0.1.0 fast_rx: ^0.1.0 copied to clipboard
An easy to understand reactive state management solution for Flutter
fast_rx is a reactive state management solution for Flutter
Inspired by GetX, observable_ish, and similar packages
Features #
Class | Use-case |
---|---|
FastBuilder | Rebuilds when reactive values within change |
RxValue | A reactive value |
RxObject | A reactive object |
RxList | A reactive list |
RxMap | A reactive map |
RxSet | A reactive set |
There are convenience typedefs for RxBool, RxInt, RxDouble, and RxString
Usage #
import 'package:fast_rx/fast_rx.dart';
...
final count = 0.rx;
...
count.stream.listen((value) => print(value));
...
FastBuilder(() => Text('$count'));
FastBuilder(
() => Text('$count'),
condition: () => true,
),
...
// Will print the value and trigger a rebuild of FastBuilders
count.value = 1;
RxObject is used to make reactive versions of existing classes
class Tuple<T1, T2> {
T1 item1;
T2 item2;
Tuple(this.item1, this.item2);
Tuple.from(Tuple<T1, T2> other) : this(other.item1, other.item2);
@override
operator ==(Object other) =>
other is Tuple<T1, T2> && other.item1 == item1 && other.item2 == item2;
@override
int get hashCode => hashValues(item1, item2);
}
class RxTuple<T1, T2> extends RxObject<Tuple<T1, T2>> implements Tuple<T1, T2> {
RxTuple(Tuple<T1, T2> value) : super(value);
@override
T1 get item1 => value.item1;
@override
set item1(T1 value) => notifyIfChanged(() => this.value.item1 = value);
@override
T2 get item2 => value.item2;
@override
set item2(T2 value) => notifyIfChanged(() => this.value.item2 = value);
@override
Tuple<T1, T2> copyValue() => Tuple.from(unregisteredValue);
@override
bool shouldNotify(Tuple<T1, T2> oldValue) =>
oldValue.item1 != unregisteredValue.item1 ||
oldValue.item2 != unregisteredValue.item2;
}
extension RxTupleExtension<T1, T2> on Tuple<T1, T2> {
RxTuple<T1, T2> get rx => RxTuple<T1, T2>(this);
}
Additional information #
See fast_ui for more information