Skip to content

Instantly share code, notes, and snippets.

@zsigmas
Forked from aagarw30/app.R
Created November 25, 2020 15:31
Show Gist options
  • Save zsigmas/2a0b870956b10c455ea8c0be97db6de0 to your computer and use it in GitHub Desktop.
Save zsigmas/2a0b870956b10c455ea8c0be97db6de0 to your computer and use it in GitHub Desktop.
Demo - side by side input widgets in R Shiny
library(shiny)
ui <- fluidPage(
tags$div(sliderInput("slide1", "Slider1", min = 0, max=10, value=4), style="display:inline-block"),
tags$div(sliderInput("slide1=2", "Slider2", min = 0, max=10, value=4), style="display:inline-block"),
tags$div(sliderInput("slide3", "Slider3", min = 0, max=10, value=4), style="display:inline-block")
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment