BetterPlayerControlsConfiguration.theme constructor
BetterPlayerControlsConfiguration.theme(
- ThemeData theme
Setup BetterPlayerControlsConfiguration based on Theme options.
Implementation
factory BetterPlayerControlsConfiguration.theme(ThemeData theme) {
return BetterPlayerControlsConfiguration(
textColor: theme.textTheme.bodySmall?.color ?? Colors.white,
iconsColor: theme.buttonTheme.colorScheme?.primary ?? Colors.white,
);
}