Nothing
# Add Material Symbols (icons) and Roboto font from Google Font API
library(htmltools)
library(shiny)
ui_muiMaterialPage <- muiMaterialPage(
addFontRoboto = TRUE,
materialSymbols = c("home", "search"), # list relevant icons for your app
Box(
sx = list(m = 2),
Typography("Roboto font from Google Font API"),
Badge(
sx = list(mt = 2),
badgeContent = 4,
color = "primary",
htmltools::span(class = "material-symbols-outlined", "home") # or "search"
)
)
)
server_muiMaterialPage <- function(input, output, session) {}
if (interactive()) {
shinyApp(ui = ui_muiMaterialPage, server = server_muiMaterialPage)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.