Learn R Programming

gentelellaShiny (version 0.1.0)

quickList: A quick list container

Description

A quick list container

Usage

quickList(...)

Arguments

...

slot for quickListItem

Examples

Run this code
# NOT RUN {
if (interactive()) {
 library(shiny)
 library(gentelellaShiny)
 shinyApp(
  ui = gentelellaPageCustom(
   gentelellaBody(
    box(
     width = 4,
     title = "Quick Lists",
     quickList(
      quickListItem(icon = icon("calendar-o"), name = "Settings"),
      quickListItem(icon = icon("bars"), name = "Subscription")
     )
    )
   )
  ),
  server = function(input, output, session) {}
 )
}

# }

Run the code above in your browser using DataLab