flutter_onlooker 1.2.0 flutter_onlooker: ^1.2.0 copied to clipboard
A state management library which provides a simple solution for updating state and navigation.
Onlooker #
A state management library which provides a simple solution for updating state and navigation.
Usage #
Lets take a look at how to use flutter_onlooker
. The library provides: StateNotifier
, StateObserver
and StateNotifierProvider
classes.
StateNotifier
is responsible for registering and notifying states. Also it can emit navigation events. The main methods of this class:
observable<S>
- registers observable state ofS
type.initial<S>
- returns initial value for state ofS
type.latest<S>
- returns the latest value for state ofS
type.contains<S>
- checks whether a state ofS
type was registered before.notify<S>
- notifies a new state ofS
type.navigate<T extends Object?>
- notifies a new navigation event.
class IncrementStateNotifier extends StateNotifier {
int _counter = 0;
IncrementStateNotifier() {
observable<int>(initial: _counter);
}
void useCase() {
final initialState = initial<int>();
final latestState = latest<int>();
final containsState = contains<int>();
notify<int>(++_counter);
navigate<void>(_counter);
}
}
StateObserver
handles building a widget in response to newstates
. It takes 3 parameters:
- required
builder
function which takes theBuildContext
andstate
, this function is responsible for returning a widget which is to be rendered.state
value can be null, becauseinitial
value is optional inobservable<S>
method. - An optional
notifier
which can be passed directly or with usingStateNotifierProvider
. - An optional
buildWhen
can be implemented for more granular control over how oftenStateObserver
rebuilds.
StateObserver<IncrementStateNotifier, int>(
builder: (_, state) {
return Text(
'$state',
style: Theme.of(context).textTheme.headline4,
);
},
);
StateNotifierProvider
- takes acreate
function that is responsible for creating theStateNotifier
,child
widget which will have access to theStateNotifier
instance viaProvider.of<StateNotifier>(context)
orcontext.read<StateNotifier>()
and optionalrouter
function which will receive navigation events.
StateNotifierProvider<IncrementStateNotifier>(
create: (_) => IncrementStateNotifier(),
child: const MyHomePage(title: 'Onlooker Demo'),
router: (context, dynamic route) {
if (route is int) {
showDialog<void>(
context: context,
builder: (_) => AlertDialog(
title: const Text('Counter info'),
content: Text('You have clicked $route times!'),
),
);
}
},
);