We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85b2eed commit 58904ccCopy full SHA for 58904cc
lib/src/widgets/grouped_checkbox.dart
@@ -256,7 +256,9 @@ class GroupedCheckbox<T> extends StatelessWidget {
256
focusColor: focusColor,
257
hoverColor: hoverColor,
258
materialTapTargetSize: materialTapTargetSize,
259
- value: true == value?.contains(optionValue),
+ value: tristate
260
+ ? value?.contains(optionValue)
261
+ : true == value?.contains(optionValue),
262
tristate: tristate,
263
onChanged: isOptionDisabled
264
? null
0 commit comments