getSecondaryButtonStyle method

ButtonStyle getSecondaryButtonStyle()

Get secondary button style based on theme with Comfortaa font

Implementation

ButtonStyle getSecondaryButtonStyle() {
  return OutlinedButton.styleFrom(
    foregroundColor: primaryColor ?? LokotroPayColors.primary,
    side: BorderSide(color: primaryColor ?? LokotroPayColors.primary),
    padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 16),
    shape: RoundedRectangleBorder(
      borderRadius: BorderRadius.circular(borderRadius ?? 12.0),
    ),
    textStyle: comfortaa(fontSize: 16, fontWeight: FontWeight.w600),
  );
}