flutter_onlooker 3.0.3 flutter_onlooker: ^3.0.3 copied to clipboard
A state management library that provides a simple solution for updating state and navigation.
import 'package:flutter/material.dart';
import 'package:flutter_onlooker/flutter_onlooker.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: StateNotifierProvider<IncrementStateNotifier>(
create: (_) => IncrementStateNotifier(),
child: const MyHomePage(title: 'Onlooker Demo'),
router: (context, routeName, arguments) {
return showDialog<void>(
context: context,
builder: (_) => AlertDialog(
title: Text("Route is '$routeName'"),
content: Text("You've clicked $arguments times!"),
),
);
},
),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({
Key? key,
required this.title,
}) : super(key: key);
final String title;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Text(
'You have pushed the button this many times:',
),
const SizedBox(
height: 8,
),
StateObserver<IncrementStateNotifier, int>(
builder: (_, state) {
return Text(
'$state',
style: Theme.of(context).textTheme.headlineMedium,
);
},
),
const SizedBox(
height: 8,
),
ElevatedButton(
onPressed: context.read<IncrementStateNotifier>().showCounterInfo,
child: const Text(
'Show counter value',
),
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: context.read<IncrementStateNotifier>().increment,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
);
}
}
class IncrementStateNotifier extends StateNotifier {
IncrementStateNotifier() {
observable<int>(initial: 0);
}
void increment() {
final latestState = latest<int>();
notify<int>(latestState + 1);
}
void showCounterInfo() {
final latestState = latest<int>();
navigate<void>(
'/show-dialog',
arguments: latestState,
);
}
}