focusNext method
void
focusNext()
Navigate menu focus down.
Implementation
void focusNext() {
focusIndex.value = (focusIndex.value + 1) % 3;
}
Navigate menu focus down.
void focusNext() {
focusIndex.value = (focusIndex.value + 1) % 3;
}