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
복사

.png&blockId=2537d9c1-4bca-4be9-bd4b-c9a143b9eb85)
.png&blockId=2537d9c1-4bca-4be9-bd4b-c9a143b9eb85&width=256)