timeline: A timeline block

Description Usage Arguments Author(s) Examples

View source: R/useful-items.R

Description

A timeline block

Usage

1

Arguments

...

slot for timelineItem

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
29
30
31
32
33
34
35
if (interactive()) {
 library(shiny)
 library(gentelellaShiny)
 shinyApp(
  ui = gentelellaPageCustom(
   gentelellaBody(
    box(
     width = 4,
     title = "Timeline",
     timeline(
      timelineItem(
       title = "Who Needs Sundance When You’ve Got Crowdfunding?",
       url = NULL,
       date = "13 hours ago",
       author = "Jane Smith",
       "Film festivals used to be do-or-die moments for movie makers.
       They were where you met the producers that could fund your
       project, and if the buyers liked your flick, they’d pay to
       Fast-forward and ..."
      ),
      timelineItem(
       title = "Who needs Money",
       url = "http:://www.google.com",
       date = "Today",
       author = "John Doe",
       "Nobody need money!",
       tag = "My tag"
      )
     )
    )
   )
  ),
  server = function(input, output, session) {}
 )
}

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