Learn R Programming

shinyMobile (version 0.8.0)

f7Link: Framework7 link

Description

Link to point toward external content.

Usage

f7Link(label, href, icon = NULL)

Arguments

label

Link text.

href

Link source, url.

icon

Link icon, if any.

Examples

Run this code
# NOT RUN {
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(label = "Twitter", href = "https://www.twitter.com")
    )
   ),
   server = function(input, output) {}
 )
}

# }

Run the code above in your browser using DataLab