elevatedButtonTheme property

ElevatedButtonThemeData elevatedButtonTheme

Implementation

ElevatedButtonThemeData get elevatedButtonTheme => ElevatedButtonThemeData(
      style: ElevatedButton.styleFrom(
        shape: buttonBorder,
        padding: buttonPadding,
        backgroundColor: colorScheme.primary,
        foregroundColor: const DigitColors().light.primaryOrange,
        disabledBackgroundColor: colorScheme.secondary.withOpacity(
          0.5,
        ),
        disabledForegroundColor: colorScheme.onSecondary,
        elevation: 0,
      ),
    );