Search

CheckboxListTile

state .map( (e) => CheckboxListTile( title: Text(e.name), value: e.hasBought, onChanged: (value) { // toggleHasBought change the hasBought state ref.read(shoppingListProvider.notifier).toggleHasBought( // stated function name: e.name, ); }, ), ) .toList(),
Dart
복사