# NOT RUN {
if(interactive()){
library(shiny)
library(shinyMobile)
shiny::shinyApp(
ui = f7Page(
title = "My app",
f7SingleLayout(
navbar = f7Navbar(title = "f7Slider"),
f7Card(
f7Slider(
inputId = "obs",
label = "Number of observations",
max = 1000,
min = 0,
value = 100,
scaleSteps = 5,
scaleSubSteps = 3,
scale = TRUE,
color = "orange",
labels = tagList(
f7Icon("circle"),
f7Icon("circle_fill")
)
),
verbatimTextOutput("test")
),
plotOutput("distPlot")
)
),
server = function(input, output) {
output$test <- renderPrint({input$obs})
output$distPlot <- renderPlot({
hist(rnorm(input$obs))
})
}
)
}
# Create a range
if(interactive()){
library(shiny)
library(shinyMobile)
shiny::shinyApp(
ui = f7Page(
title = "My app",
f7SingleLayout(
navbar = f7Navbar(title = "f7Slider Range"),
f7Card(
f7Slider(
inputId = "obs",
label = "Range values",
max = 500,
min = 0,
value = c(50, 100),
scale = FALSE
),
verbatimTextOutput("test")
)
)
),
server = function(input, output) {
output$test <- renderPrint({input$obs})
}
)
}
# }
Run the code above in your browser using DataLab