outlinedButtonTheme property

OutlinedButtonThemeData get outlinedButtonTheme

Implementation

OutlinedButtonThemeData get outlinedButtonTheme => OutlinedButtonThemeData(
  style: OutlinedButton.styleFrom(
    foregroundColor: colors.primary,
    minimumSize: Size(double.infinity, sizes.buttonMd),
    shape: RoundedRectangleBorder(
      borderRadius: BorderRadius.circular(sizes.radiusMd),
    ),
    side: BorderSide(color: colors.primary),
    textStyle: typography.bodyMedium.copyWith(
      fontWeight: FontWeight.w600,
      fontFamily: typography.headlineFontFamily,
    ),
    padding: EdgeInsets.symmetric(horizontal: sizes.md, vertical: sizes.md),
  )
);