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