我怎样才能保持供应商的数据状态

How can I keep state of data from provider

我只想在按下“应用”按钮时更新我的​​数据,但提供商不允许。当我更新我的复选框值状态时,我的所有提供者数据都在更新。我怎样才能避免这种情况

Filter Screen

https://gist.github.com/MehmetAtabey/bc7ab87dec3c42f4d46fbd8f9d9f07c9

如果我理解你的问题,你应该将你的过滤器的副本添加到子过滤器,而不是相同的元素。 因为 Dart 默认使用对象引用,所以你引用的是同一个对象。

为您创建一个“克隆”过滤方法:

class Filter {
  final String filterName;
  final String filterGroupName;
  int count = 0;
  bool isSelected = false;
  Filter(this.filterGroupName, this.filterName);
  
  factory Filter.clone(Filter source){
    Filter f = Filter(source.filterGroupName, source.filterName);
    f.count = source.count;
    f.isSelected = source.isSelected;
    return f;
  }
}

创建子列表数组时,使用“克隆”方法将对象添加到新列表中:

List<Filter> temp = widget.filters.where((element) => element.filterGroupName == widget.filterGroupName).toList();

widget.subFilters = List<Filter>();    
temp.forEach((el)=>widget.subFilters.add(Filter.clone(el)));