简体   繁体   中英

Search inside the List<Map> in flutter dart?

I want to filter the List by searching in the search bar but it does not work.

for (var map in offersList) {
      if (map.containsKey("foodname")) {
        if (map["foodname"] == query) {
          setState(() {
            offersList.clear();
            offersList.add(map);
          });
        }
      }
    }

Use a forEach

    offersList.forEach((map){
      if (map.containsKey("foodname")) {
        if (map["foodname"] == query) {
          setState(() {
            offersList.clear();
            offersList.add(map);
          });
        }
      }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM