primary property

ButtonStyle primary
final

Implementation

static final ButtonStyle primary = ButtonStyle(
  backgroundColor: WidgetStateProperty.all(SepteoColors.blue.shade900),
  foregroundColor: WidgetStateProperty.all(Colors.white),
  shape: WidgetStateProperty.all(
    RoundedRectangleBorder(
      borderRadius: BorderRadius.circular(SepteoSpacings.xs),
    ),
  ),
);