Fix checkbox fill color

This commit is contained in:
Ankit Mahato
2025-03-29 11:40:57 +05:30
parent df7f4f8cdc
commit 632186f73c

View File

@ -34,7 +34,7 @@ class ADCheckBox extends StatelessWidget {
if (states.contains(WidgetState.selected)) {
return colorScheme.primary;
}
return null;
return colorScheme.surfaceContainerLowest;
},
));
}