ButtonStyle.secondary constructor

ButtonStyle.secondary()

A predefined secondary button style.

Uses a neutral gray color with white text.

Implementation

ButtonStyle.secondary()
    : this(
        backgroundColor: '#6c757d',
        textStyle: TextStyle(
          color: '#ffffff',
          fontWeight: FontWeight.w600,
          fontSize: 16.0,
        ),
        hoverColor: '#545b62',
      );