# NOT RUN {
if(interactive()){
library(shiny)
library(shinyMobile)
shiny::shinyApp(
ui = f7Page(
title = "My app",
f7SingleLayout(
navbar = f7Navbar(title = "f7checkBox"),
f7Card(
f7checkBox(
inputId = "check",
label = "Checkbox",
value = FALSE
),
verbatimTextOutput("test")
)
)
),
server = function(input, output) {
output$test <- renderPrint({input$check})
}
)
}
# }
Run the code above in your browser using DataLab