focusNext method

void focusNext()

Navigate menu focus down.

Implementation

void focusNext() {
  focusIndex.value = (focusIndex.value + 1) % 3;
}