highlightedButtonStyle method

ButtonStyle highlightedButtonStyle()

Implementation

ButtonStyle highlightedButtonStyle() {
  return ElevatedButton.styleFrom(
    onSurface: Colors.transparent,
    onPrimary: Colors.transparent,
    padding: const EdgeInsets.all(0),
    shadowColor: Colors.transparent,
    shape: CircleBorder(),
    primary: Colors.grey,
  );
}