如何在flutter的提供程序中使用shared_preferences ...?

问题描述

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

我该怎么办..?

解决方法

您可以这样写:

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

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