Description Usage Arguments Author(s) Examples
Create layout boxes with different backgrounds that can be arranged seamlessly next to each other
1 |
... |
Any element. |
style |
Tile style: "muted", "primary" or "secondary". NULL by default. |
padding |
Apply different spacing. NULL by default. Choose "remove", "small" or "large". |
David Granjon, dgranjon@ymail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | if(interactive()){
library(shiny)
shiny::shinyApp(
ui = UIkitPage(
title = "My UIkit application",
UIkitGrid(
child_width = "1-6",
UIkitTile("Default"),
UIkitTile(style = "muted", "Muted"),
UIkitTile(style = "primary", "Primary"),
UIkitTile(style = "secondary", "Secondary"),
UIkitTile(style = "primary", padding = "large", "Primary Large")
)
),
server = function(input, output) {}
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.