如何在flutter上的provider中使用shared_preferences



我使用Provide创建了一个项目。之后,为了在我的应用程序上保存更改,我尝试使用shared_preferences插件。但是我不能用它。。。!

我该怎么做。。?

您可以这样写:

sharedPrefs = await SharedPreferences.getInstance();
sharedPrefs.setString('youVariableName', Provider.of<YourModel>(context, listen: false).youVariableName);

当然,当您在Provider变量中有值时,可以写这个。

相关内容

  • 没有找到相关文章

最新更新