primaryElevatedButtonThemeData static method
The primary ElevatedButtonThemeData for the light theme.
Implementation
static ElevatedButtonThemeData primaryElevatedButtonThemeData() {
return ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
foregroundColor: LightThemeColors.colorScheme.onPrimary,
backgroundColor: LightThemeColors.colorScheme.primary,
disabledForegroundColor: LightThemeColors.colorScheme.onSurfaceVariant,
disabledBackgroundColor: LightThemeColors.colorScheme.surfaceDim,
textStyle: AppTypography.light().labelLarge,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)),
padding: const EdgeInsets.all(12),
elevation: 0,
),
);
}