elevatedButtonTheme function

dynamic elevatedButtonTheme(
  1. dynamic colors
)

Implementation

ElevatedButtonThemeData elevatedButtonTheme(ColorScheme colors) =>
    ElevatedButtonThemeData(
      style: ElevatedButton.styleFrom(
        padding: const EdgeInsets.all(18),
        elevation: 0,
        backgroundColor: colors.primary,
        foregroundColor: Colors.white,
        shape: RoundedRectangleBorder(
          borderRadius: BorderRadius.circular(12),
        ),
      ),
    );