handleSpaceKey method

  1. @override
void handleSpaceKey(
  1. KeyboardEvent event
)
override

Stops material-dropdown-select from closing popup when user type space in the input field.

Implementation

@override
void handleSpaceKey(KeyboardEvent event) {
  event.stopPropagation();
}