outlined static method

dynamic outlined(
  1. AppThemeExtension themeExt
)

Implementation

static outlined(AppThemeExtension themeExt) {
  return OutlinedButtonThemeData(
    style: OutlinedButton.styleFrom(
      minimumSize: themeExt.buttonMinSize,
      foregroundColor: themeExt.primary,
      side: BorderSide(color: themeExt.primary, width: themeExt.outlinedButtonBorderWidth),
      shape: themeExt.roundedRectangleShape,
      alignment: Alignment.center,
    ),
  );
}