customPrimaryButtonTheme function
ShadButtonTheme
customPrimaryButtonTheme(
- ShadColorScheme colorScheme
Implementation
ShadButtonTheme customPrimaryButtonTheme(ShadColorScheme colorScheme) {
return ShadThemeData().primaryButtonTheme.copyWith(
backgroundColor: colorScheme.primary,
pressedBackgroundColor: colorScheme.primary.withValues(alpha: 0.9),
textStyle: StyleText.fontBodyMedium(color: colorScheme.primaryForeground),
);
}