-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Here is the code to get the default color when activeBgColor is not specified:
final activeBgColor =
widget.activeBgColor ?? [Theme.of(context).primaryColor];
However, changing it to the following would allow for consistency when using a color scheme:
final activeBgColor =
widget.activeBgColor ?? [Theme.of(context).colorScheme.primary];
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request