if(interactive()){
library(shiny)
library(shinyMobile)
shiny::shinyApp(
ui = f7Page(
title = "My app",
f7SingleLayout(
navbar = f7Navbar(
title = "f7Table"
),
uiOutput("table")
)
),
server = function(input, output) {
output$table <- renderUI({
f7Table(mtcars)
})
}
)
}
Run the code above in your browser using DataLab