hydrated_mobx 1.1.3
hydrated_mobx: ^1.1.3 copied to clipboard
An extension to the MobX state management library which automatically persists and restores MobX states.
import 'package:flutter/material.dart';
import 'package:flutter_mobx/flutter_mobx.dart';
import 'package:hydrated_mobx/hydrated_mobx.dart';
import 'package:hydrated_mobx_example/counter_store.dart';
import 'package:hydrated_mobx_example/keyed_counter_store.dart';
import 'package:path_provider/path_provider.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
// Initialize storage
final appDocumentDir = await getApplicationDocumentsDirectory();
HydratedMobX.storage = await HydratedStorage.build(
storageDirectory: HydratedStorageDirectory(appDocumentDir.path),
);
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Hydrated MobX Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
initialRoute: '/',
routes: <String, WidgetBuilder>{
'/': (_) => const CounterPage(),
'/keyed': (_) => const KeyedCounterPage(),
},
);
}
}
class CounterPage extends StatefulWidget {
const CounterPage({super.key});
@override
State<CounterPage> createState() => _CounterPageState();
}
class _CounterPageState extends State<CounterPage> {
late final CounterStore counter = CounterStore();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: const Text('Hydrated Counter'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Observer(
builder: (_) => Text(
'${counter.count}',
style: Theme.of(context).textTheme.headlineMedium,
),
),
],
),
),
floatingActionButton: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
FloatingActionButton(
heroTag: 'counter_increment',
onPressed: counter.increment,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
const SizedBox(height: 16),
FloatingActionButton(
heroTag: 'counter_decrement',
onPressed: counter.decrement,
tooltip: 'Decrement',
child: const Icon(Icons.remove),
),
],
),
bottomNavigationBar: ListTile(
title: const Text('Open scoped counter (id override example)'),
onTap: () => Navigator.of(context).pushNamed('/keyed'),
),
);
}
}
class KeyedCounterPage extends StatefulWidget {
const KeyedCounterPage({super.key});
@override
State<KeyedCounterPage> createState() => _KeyedCounterPageState();
}
class _KeyedCounterPageState extends State<KeyedCounterPage> {
late final KeyedCounterStore store = KeyedCounterStore(storeId: 'demo-scope');
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: const Text('Keyed counter (storageId override)'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text('This store uses super(scopeKey) so storage key is unique.'),
Observer(
builder: (_) => Text(
'${store.count}',
style: Theme.of(context).textTheme.headlineMedium,
),
),
],
),
),
floatingActionButton: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
FloatingActionButton(
heroTag: 'keyed_increment',
onPressed: store.increment,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
const SizedBox(height: 16),
FloatingActionButton(
heroTag: 'keyed_decrement',
onPressed: store.decrement,
tooltip: 'Decrement',
child: const Icon(Icons.remove),
),
],
),
);
}
}