Link to point toward external content.
f7Link(label, href, icon = NULL)
label | Link text. |
---|---|
href | Link source, url. |
icon | Link icon, if any. |
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(label = "Twitter", href = "https://www.twitter.com") ) ), server = function(input, output) {} ) }