File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ class _BlockPickerState extends State<BlockPicker> {
120120 widget.availableColors,
121121 (Color color, [bool ? _, Function ? __]) => widget.itemBuilder (
122122 color,
123- ( _currentColor.value == color.value) && (widget.pickerColor.value == color.value) ,
123+ _currentColor.value == color.value,
124124 () => changeColor (color),
125125 ),
126126 );
@@ -169,7 +169,7 @@ class _MultipleChoiceBlockPickerState extends State<MultipleChoiceBlockPicker> {
169169 widget.availableColors,
170170 (Color color, [bool ? _, Function ? __]) => widget.itemBuilder (
171171 color,
172- _currentColors.contains (color) && widget.pickerColors. contains (color) ,
172+ _currentColors.contains (color),
173173 () => toggleColor (color),
174174 ),
175175 );
You can’t perform that action at this time.
0 commit comments