-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathargonRow.Rd
48 lines (45 loc) · 1.01 KB
/
argonRow.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/argonRow.R
\name{argonRow}
\alias{argonRow}
\title{Create a Boostrap 4 row}
\usage{
argonRow(..., center = FALSE)
}
\arguments{
\item{...}{Any UI element.}
\item{center}{Whether to center row elements or not. FALSE by default.}
}
\description{
Build an argon row
}
\examples{
if (interactive()) {
library(argonR)
argonRow(
argonColumn(
width = 6,
argonH1(
display = 3,
"ArgonR, HTML static template for R",
htmltools::span("completed with examples")
) \%>\% argonTextColor(color = "white"),
argonLead(
"Argon is a great free UI package based on Bootstrap
4 that includes the most important components and features"
) \%>\% argonTextColor(color = "white")
),
argonColumn(
width = 6,
argonImage(
src = "inst/images/imac.svg",
floating = TRUE
) \%>\% argonPersp(side = "right")
\%>\% argonBlur()
)
)
}
}
\author{
David Granjon, \email{[email protected]}
}