All Projects → JohnCoene → reactslider

JohnCoene / reactslider

Licence: other
WIP reactslider for Shiny

Programming Languages

r
7636 projects
javascript
184084 projects - #8 most used programming language

Labels

reactslider

Such a slider would be great for Shiny, it seems however that react-slider-kit might not be it.

⚠️ This is a work in progress.

# install.packages("remotes")
remotes::install_github("JohnCoene/reactslider")

Example

library(shiny)
library(reactslider)

x <- round(rnorm(200, 50, 5))

ui <- fluidPage(
  reactsliderInput("slider", data = x),
  verbatimTextOutput("text")
)

server <- function(input, output) {
  output$text <- renderPrint({
    input$slider
  })
}

shinyApp(ui, server)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].