elevated static method

dynamic elevated(
  1. AppThemeExtension themeExt
)

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,
    ),
  );
}