Is it possible to have tabs on both the left and right sides of a tabsetPanel
? For example, one tab on the right while others remain on the left, creating a layout like the one below:
https://i.sstatic.net/oTZgH.png
library(shiny)
ui <- fluidPage(
tabsetPanel(
tabPanel("tab_left1"),
tabPanel("tab_left2"),
tabPanel("tab_right")
)
)
server <- function(input, output, session) {}
shinyApp(ui, server)