elevatedButtonTheme property

ElevatedButtonThemeData get elevatedButtonTheme

Implementation

ElevatedButtonThemeData get elevatedButtonTheme => ElevatedButtonThemeData(
  style: ElevatedButton.styleFrom(
    backgroundColor: colorScheme.primary,
    foregroundColor: colorScheme.onPrimary,
    disabledBackgroundColor: colorScheme.onSurface.withValues(alpha: 0.12),
    disabledForegroundColor: colorScheme.onSurface.withValues(alpha: 0.38),
    textStyle: textTheme.labelLarge?.copyWith(fontWeight: FontWeight.w600),
    elevation: 1,
    shadowColor: colorScheme.shadow,
    padding: EdgeInsets.symmetric(horizontal: 24, vertical: 12),
    shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
  ),
);