selectedButtonStyle method

ButtonStyle selectedButtonStyle()

Implementation

ButtonStyle selectedButtonStyle() {
  return selectedStyle ??
      ElevatedButton.styleFrom(
        onSurface: Colors.transparent,
        onPrimary: Colors.transparent,
        padding: const EdgeInsets.all(0),
        shadowColor: Colors.transparent,
        shape: CircleBorder(),
        primary: Colors.brown, // brown
      );
}