elevatedButtonTheme property

ElevatedButtonThemeData get elevatedButtonTheme

Implementation

ElevatedButtonThemeData get elevatedButtonTheme => ElevatedButtonThemeData(
  style: ElevatedButton.styleFrom(
    backgroundColor: colors.primary,
    foregroundColor: colors.onPrimary,
    minimumSize: Size(double.infinity, sizes.buttonMd),
    textStyle: typography.bodyMedium.copyWith(
      fontWeight: FontWeight.w600,
      fontFamily: typography.headlineFontFamily,
    ),
    elevation: 0,
    padding: EdgeInsets.symmetric(horizontal: sizes.md, vertical: sizes.md),
    shape: RoundedRectangleBorder(
      borderRadius: BorderRadius.circular(sizes.radiusMd),
    )
  )
);