elevatedButtonTheme function
Implementation
ElevatedButtonThemeData elevatedButtonTheme() => ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
elevation: 0,
textStyle: textTheme.titleMedium?.copyWith(
color: colorScheme.primary,
fontSize: 15,
),
backgroundColor: colorScheme.primary,
foregroundColor: Colors.white,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)),
),
);