By default tabs in a tabsetPanel
are put on the left. Is it possible to place a tab on the right side, while still having other tabs on the left? So that it loo
Maybe you can create 2 tabsetPanel
and pull one over to the right?
rm(list = ls())
library(shiny)
ui <- fluidPage(
div(style="display:inline-block",tabsetPanel(type = c("pills"),tabPanel("tab_left1"),tabPanel("tab_left2"))),
div(style="display:inline-block;float: right",tabsetPanel(type = c("pills"),tabPanel("tab_right")))
)
server <- function(input, output, session) {}
shinyApp(ui, server)