meta_apple_web_app | R Documentation |
Apple Web App Meta Tags
meta_apple_web_app(
.meta = meta(),
title = NULL,
capable = NULL,
status_bar_style = c("default", "black", "black-translucent")
)
.meta |
A |
title |
Launch Icon Title |
capable |
Enables standalone (full-screen) mode if TRUE |
status_bar_style |
Status bar appearance. has no effect unless
standalone more is enabled (see "If content is set to default, the status bar appears normal. If set to black, the status bar has a black background. If set to black-translucent, the status bar is black and translucent. If set to default or black, the web content is displayed below the status bar. If set to black-translucent, the web content is displayed on the entire screen, partially obscured by the status bar. The default value is default." |
A meta
object, or a set of <meta>
HTML tags inside an HTML
<head>
tag. For use in rmarkdown::html_document()
, shiny::runApp()
,
or other HTML locations.
Other meta:
meta_apple_itunes_app()
,
meta_general()
,
meta_geo()
,
meta_google_scholar()
,
meta_name()
,
meta_social()
,
meta_tag()
,
meta_viewport()
,
meta()
meta() %>%
meta_apple_web_app(
title = "My Fancy App",
capable = TRUE,
status_bar_style = "black-translucent"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.