-
Notifications
You must be signed in to change notification settings - Fork 29
/
activityList.Rd
48 lines (47 loc) · 1 KB
/
activityList.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/useful-items.R
\name{activityList}
\alias{activityList}
\title{An activity list}
\usage{
activityList(...)
}
\arguments{
\item{...}{Slot for activityItem}
}
\description{
An activity list
}
\examples{
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) {}
)
}
}
\author{
David Granjon, \email{[email protected]}
}