I created a drop-down menu as in this repex (Prevent navigation bar from overlapping content in flexdashboard R):
---
title: "Untitled"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
---
```{r setup, include=FALSE}
library(flexdashboard)
```
Long Tab 1 {data-navmenu="Project Sections"}
============================================================
### Chart A
```{r}
```
Another Long Tab 2 {data-navmenu="Project Sections"}
============================================================
Column {data-width=350}
-----------------------------------------------------------------------
### Chart B
```{r}
```
Another Long Tab 3
============================================================
### Chart C
```{r}
Another Long Tab 4
============================================================
Another Long Tab 5
============================================================
Another Long Tab 6
============================================================
```
However, I'd like to also have a tabber next to the dropdown "Project Sections" showing which chart I have currently selected (eg. Project Sections Chart B).
Thank you for any help!