I'm trying to make a Flutter screen that changes the icon (from unchecked to checked) when the ListTile is tapped. I've continued on from the first Flutter app tutorial, https://docs.flutter.dev/get-started/codelab which has something very similar that functions.
However, when I tap my ListTile the boolean changes values (as evidenced by my print() statement), but the icon stays the same, despite using setState(). I'm brand new to Flutter, could someone please point out what I'm doing wrong?
Edit: It looks like I needed to wrap after builder: in a StatefulBuilder... but now the question is how to address each check box individually, instead of all at once?