elevated static method
Implementation
static elevated(AppThemeExtension themeExt) {
return ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
minimumSize: themeExt.buttonMinSize,
backgroundColor: themeExt.primary,
foregroundColor: themeExt.onPrimary,
shape: themeExt.roundedRectangleShape,
alignment: Alignment.center,
),
);
}