| f7Link | R Documentation | 
Link to point toward external content.
f7Link(label = NULL, href, icon = NULL, routable = FALSE)
| label | Optional link text. | 
| href | Link source, url. | 
| icon | Link icon, if any. Must pass f7Icon. | 
| routable | Whether to make the link handled by the framework 7 router. Default to FALSE which opens a new page in a new tab. | 
David Granjon, dgranjon@ymail.com
if (interactive()) {
  library(shiny)
  library(shinyMobile)
  shinyApp(
    ui = f7Page(
      title = "Links",
      f7SingleLayout(
        navbar = f7Navbar(title = "f7Link"),
        f7Link(label = "Google", href = "https://www.google.com"),
        f7Link(href = "https://www.twitter.com", icon = f7Icon("bolt_fill"))
      )
    ),
    server = function(input, output) {}
  )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.