ukContainer.Rd
UIkit container for shiny
ukContainer(..., size = NULL)
... | The UI elements to place in the card |
---|---|
size | character. size of the container 'small', 'medium' or 'large'. |
# NOT RUN { library(shiny) shinyApp( ui = ukPage( ukContainer( h1("Hello", class = "uk-heading") ) ), server = function(input, output) {} ) # }