Customize the appearance of the original shiny's sliderInput
Usage
chooseSliderSkin(
skin = c("Shiny", "Flat", "Big", "Modern", "Sharp", "Round", "Square"),
color = NULL
)
See also
See setSliderColor
to update the color of your sliderInput.
Examples
if (interactive()) {
library(shiny)
library(shinyWidgets)
# With Modern design
ui <- fluidPage(
chooseSliderSkin("Modern"),
sliderInput("obs", "Customized single slider:",
min = 0, max = 100, value = 50
),
sliderInput("obs2", "Customized range slider:",
min = 0, max = 100, value = c(40, 80)
),
plotOutput("distPlot")
)
server <- function(input, output) {
output$distPlot <- renderPlot({
hist(rnorm(input$obs))
})
}
shinyApp(ui, server)
# Use Flat design & a custom color
ui <- fluidPage(
chooseSliderSkin("Flat", color = "#112446"),
sliderInput("obs", "Customized single slider:",
min = 0, max = 100, value = 50
),
sliderInput("obs2", "Customized range slider:",
min = 0, max = 100, value = c(40, 80)
),
sliderInput("obs3", "An other slider:",
min = 0, max = 100, value = 50
),
plotOutput("distPlot")
)
server <- function(input, output) {
output$distPlot <- renderPlot({
hist(rnorm(input$obs))
})
}
shinyApp(ui, server)
}