UIkit container for shiny

ukContainer(..., size = NULL)

Arguments

...

The UI elements to place in the card

size

character. size of the container 'small', 'medium' or 'large'.

Examples

# NOT RUN {
library(shiny)
shinyApp(
 ui = ukPage(
  ukContainer(
    h1("Hello", class = "uk-heading")
  )
 ),
 server = function(input, output) {}
)
# }