We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As shown below:
the label should be next to the slider. However, I think this is a problem coming from bulma itself.
👍
The text was updated successfully, but these errors were encountered:
Yes indeed. I guess one could wrap it in a column
library(shiny) ui <- bulmaPage( bulmaContainer( bulmaColumns( bulmaColumn(bulmaSliderInput("slider", 10, 3, 150, orient = "vertical"), width = 1), bulmaColumn(plotOutput("plot"), width = 11) ) ) ) server <- function(input, output){ data <- reactive({ rnorm(input$slider, 20, 4) }) output$plot <- renderPlot({ hist(data()) }) } shinyApp(ui, server)
Sorry, something went wrong.
Looking back, the slider was missing dependencies, looks much better now.
The vertical seems like a hack and does not look good in the official doc either.
No branches or pull requests
As shown below:
the label should be next to the slider. However, I think this is a problem coming from bulma itself.
👍
The text was updated successfully, but these errors were encountered: