argonRow {argonR}R Documentation

Create a Boostrap 4 row

Description

Build an argon row

Usage

argonRow(..., center = FALSE)

Arguments

...

Any UI element.

center

Whether to center row elements or not. FALSE by default.

Author(s)

David Granjon, dgranjon@ymail.com

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()
  )
 )
}



[Package argonR version 0.2.0 Index]