微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Provider 中的重置字段或变量

如何解决Provider 中的重置字段或变量

我正在使用提供程序包进行状态管理,任何人都可以告诉我重置字段或变量的正确方法吗? 这里的示例代码:我想在导航到其他屏幕后将 _counter 重置回 0,我需要正确的方法来做到这一点,提前谢谢您 :)

class AppProvider with ChangeNotifier {
int _counter = 0;
int get counter => _counter;

void incrementCounter() {
_counter++;
notifyListeners();
}
}

enter image description here

解决方法

添加此方法并在导航到其他页面时调用它:

class AppProvider with ChangeNotifier {
int _counter = 0;
int get counter => _counter;

 void incrementCounter() {
  _counter++;
  notifyListeners();
 }
 void clear(){
  _counter = 0;
  notifyListeners();
 }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。