onInputBoxKeyDown method

void onInputBoxKeyDown(
  1. KeyboardEvent event
)

Stops propagating arrow key action from time input box to material-dropdown-select.

Implementation

void onInputBoxKeyDown(KeyboardEvent event) {
  event.stopPropagation();
}