outlinedButtonTheme property

OutlinedButtonThemeData get outlinedButtonTheme

Implementation

OutlinedButtonThemeData get outlinedButtonTheme => OutlinedButtonThemeData(
  style: OutlinedButton.styleFrom(
    foregroundColor: colorScheme.primary,
    side: BorderSide(color: colorScheme.outline),
    textStyle: textTheme.labelLarge?.copyWith(fontWeight: FontWeight.w600),
    padding: EdgeInsets.symmetric(horizontal: 16, vertical: 12),
    shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
  ),
);