f7Align
is an alignment utility for items.
Usage
f7Align(tag, side = c("left", "center", "right", "justify"))
Author
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(shiny)
library(shinyMobile)
shinyApp(
ui = f7Page(
title = "Align",
f7SingleLayout(
navbar = f7Navbar(title = "f7Align"),
f7Row(
f7Align(h1("Left"), side = "left"),
f7Align(h1("Center"), side = "center"),
f7Align(h1("Right"), side = "right")
)
)
),
server = function(input, output) {}
)
}