elevatedButtonTheme property

ElevatedButtonThemeData get elevatedButtonTheme

Implementation

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