--- 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 LR subgraph Launcher App MyLauncher["My Launcher
* Installs all Apps
* Runs Service Apps
* Set Diagnostics Mode
* Send Diagnostics Reports
"] end subgraph Service Apps MyDatalayer["My Datalayer"] MySpeech["My Speech"] end subgraph End User Apps MyMonitor["My Monitor"] MyPlayer["My Player"] end subgraph Users Assistant["
Assistant
Installs and runs
My Launcher
to set up all Apps
"] EndUser["
End User
Runs End User Apps
by voice via
Google Assistant
"] end %% Flow MyLauncher -->|Installs/
Runs| MyDatalayer MyLauncher -->|Installs/
Runs| MySpeech MyLauncher -->|Installs| MyMonitor MyLauncher -->|Installs| MyPlayer Assistant -->|Installs/
Runs| MyLauncher Assistant -->|Runs to test and complete
setup as needed| MyMonitor Assistant -->|RRuns to test and complete
setup as needed| MyPlayer EndUser -->|Runs| MyMonitor EndUser -->|Runs| MyPlayer