activityList: An activity list

Description Usage Arguments Author(s) Examples

View source: R/useful-items.R

Description

An activity list

Usage

1

Arguments

...

Slot for activityItem

Author(s)

David Granjon, dgranjon@ymail.com

Examples

 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
if (interactive()) {
 library(shiny)
 library(gentelellaShiny)
 shinyApp(
  ui = gentelellaPageCustom(
   gentelellaBody(
    box(
     title = "Activity List",
     activityList(
      lapply(X = 1:3, FUN = function(i) {
       activityItem(
        title = "Desmond Davison",
        img = paste0("https://image.flaticon.com/icons/svg/1087/108783", i,".svg"),
        day = 13,
        month = "june",
        url = "http://www.google.com",
        "Raw denim you probably haven't heard of them jean shorts Austin.
        Nesciunt tofu stumptown aliqua butcher retro keffiyeh
        dreamcatcher synth."
       )
      })
     )
    )
   )
  ),
  server <- function(input, output) {}
 )
}

MarkEdmondson1234/gentelellaShiny documentation built on Dec. 31, 2019, 1:24 a.m.