shinycssloaders
shinycssloaders copied to clipboard
Display spinners inline
When placing outputs with spinners beside each other they are each on their own line. How can they be placed horizontally?
tabPanel(title = "Sentiment", width = 12,
withSpinner(imageOutput(outputId = "wordcloud")),
withSpinner(imageOutput(outputId = "sentiment_pie")),
withSpinner(imageOutput(outputId = "star_rating_chart"))
)
I have tried the following but but it hides the spinner itself
tags$style(HTML("div.shiny-spinner-output-container {display: inline}")),
Similarly, adding a spinner to a textOutput(inline = TRUE) disrupts the inline-ness of the text output.
If anyone has a good idea of how to fix this elegantly, a PR would be welcomed