library(shiny)
library(shiny.semantic)
library(fomantic.plus)
ui <- navbar_page(
title = "Hello Fomantic UI!",
id = "page_navbar",
collapsible = TRUE,
class = "five item stackable",
tab_panel(
title = "Content",
value = "content",
addTooltip(
fui_el$label(class = "small circular", "?"),
"Testing out the popup",
position = "bottom left"
),
addPopup(
fui_el$label(class = "small circular", id = "ds", "?"),
"<b><em>Testing out the popup</b></em>",
title = "TITTLE",
html = FALSE,
settings = list(exclusive = TRUE, position = "bottom left")
),
form(multiple_radio("toggle", "Show Menu Dropdown", c("Yes", "No"), c("show", "hide"), "show"))
),
tab_panel(
title = "Icon",
value = "icon",
icon = "r project",
"A tab with an icon in the menu",
),
tab_panel(
title = "A Very Long Tab Name",
value = "long_tab_name",
"Example of a tab name which is very long",
tags$br(),
),
navbar_menu(
"Menu",
"Section 1",
tab_panel(
title = "Part 1",
value = "sec1_part1",
),
"----",
"Section 2",
tab_panel(
title = "Part 1",
value = "sec2_part1",
h3("Section 2 - Part 1")
),
tab_panel(
title = "Part 2",
value = "sec2_part2"
)
)
)
server <- function(input, output, session) {
observeEvent(input$toggle, {
if (input$toggle == "hide") {
hide_tab(session, "page_navbar", target = "Menu")
} else {
show_tab(session, "page_navbar", target = "Menu")
}
}, ignoreInit = TRUE)
}
shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.