所以我想知道为什么提供商在浏览器刷新时会丢失状态。它不是应该在刷新/重新加载后保持状态吗?
非常感谢帮助
颤动的默认项目
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();
}
}
答案 0 :(得分:1)
您可以使用Cookie或跟踪状态和其他信息。我找到了这段代码,即使刷新也可以正常工作。
import 'package:universal_html/html.dart' as html;
class CookieManager {
static addToCookie(String key, String value) {
// 2592000 sec = 30 days.
html.document.cookie = "$key=$value; max-age=2592000; path=/;";
}
static String getCookie(String key) {
String cookies = html.document.cookie;
List<String> listValues = cookies.isNotEmpty ? cookies.split(";") : List();
String matchVal = "";
for (int i = 0; i < listValues.length; i++) {
List<String> map = listValues[i].split("=");
String _key = map[0].trim();
String _val = map[1].trim();
if (key == _key) {
matchVal = _val;
break;
}
}
return matchVal;
}
}