---
title: Links Menu Flow
config:
theme: base
themeVariables:
primaryColor: '#f0f0f0'
themeCSS: |
.nodeLabel {
font-weight: bold !important;
color: #ffffff
}
.node rect, .node circle, .node ellipse, .node polygon {
fill: #1E90FF !important;
stroke: none !important;
rx: 10px !important;
ry: 10px !important;
}
.edgeLabel {
color: #000000 !important;
}
---
flowchart TD
%% Legends
Start[Start]
Return[Return]
Menu[Voice Menu
Speaking Links Loop]
MenuItem[Short Waiting for Gesture
after each Link]
%% Flow
Start --> Menu
Menu --> |Current Link| MenuItem
Menu --> |Error Occured| Return
MenuItem --> |"Tap (Link Selected)"| Return
MenuItem --> |"Timeout Occured
(Next / First Link)"| Menu
MenuItem --> |"Double Tap
(Retry Link)"| Menu
MenuItem --> |"Triple Tap (Exit) /
Error Occured"| Return