# NOT RUN {
if(interactive()){
library(shiny)
library(shinyMobile)
shiny::shinyApp(
ui = f7Page(
title = "My app",
f7SplitLayout(
sidebar = f7Panel(
inputId = "sidebar",
title = "Sidebar",
side = "left",
theme = "light",
f7PanelMenu(
id = "menu",
f7PanelItem(tabName = "tab1", title = "Tab 1", icon = f7Icon("email"), active = TRUE),
f7PanelItem(tabName = "tab2", title = "Tab 2", icon = f7Icon("home"))
),
effect = "reveal"
),
navbar = f7Navbar(
title = "Split Layout",
hairline = FALSE,
shadow = TRUE
),
toolbar = f7Toolbar(
position = "bottom",
f7Link(label = "Link 1", src = "https://www.google.com"),
f7Link(label = "Link 2", src = "https://www.google.com", external = TRUE)
),
# main content
f7Items(
f7Item(
tabName = "tab1",
f7Slider("obs", "Number of observations:",
min = 0, max = 1000, value = 500
),
plotOutput("distPlot")
),
f7Item(tabName = "tab2", "Tab 2 content")
)
)
),
server = function(input, output) {
observe({
print(input$menu)
})
output$distPlot <- renderPlot({
dist <- rnorm(input$obs)
hist(dist)
})
}
)
}
# }
Run the code above in your browser using DataLab