поэтому мне интересно, почему провайдер теряет состояние при обновлении браузера sh. Разве это не предполагает сохранение состояния после обновления / перезагрузки?
Действительно оценил бы проект Help
по умолчанию для флаттера
home: ChangeNotifierProvider<Counter>(
create: (_) => Counter(),
child: MyHomePage(title: 'Flutter Demo Home Page')),
class MyHomePage extends StatelessWidget {
final String title;
MyHomePage({this.title});
@override
Widget build(BuildContext context) {
final counter = Provider.of<Counter>(context);
return Scaffold(
appBar: AppBar(
title: Text(title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'You have pushed the button this many
times:',
),
Text(
'${counter.value}',
style:
Theme.of(context).textTheme.headline4,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: () => counter.increment(),
tooltip: 'Increment',
child: Icon(Icons.add),
),
);
}
}
Вот класс провайдеров
import 'package:flutter/foundation.dart';
class Counter with ChangeNotifier {
int value=0;
void increment() {
value++;
notifyListeners();
}
}