tablerMediaCard: Create a Boostrap 4 media card

Description Usage Arguments Author(s) Examples

Description

Build a tabler media card

Usage

1
2
tablerMediaCard(..., title = NULL, date = NULL, href = NULL,
  src = NULL, avatarUrl = NULL, width = 4)

Arguments

...

Any other elements.

title

Title.

date

Date.

href

External link.

src

Image url.

avatarUrl

Avatar image.

width

Card width. 4 by default.

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
if(interactive()){
 library(shiny)
 library(tablerDash)

 shiny::shinyApp(
   ui = tablerDashPage(
    navbar = NULL,
    footer = NULL,
    title = "test",
    body = tablerDashBody(
     tablerMediaCard(
      title = "Media Card",
      date = "Today",
      href = "https://www.google.com",
      src = "https://preview.tabler.io/demo/photos/matt-barrett-339981-500.jpg",
      avatarUrl = "https://image.flaticon.com/icons/svg/145/145842.svg",
      width = 6
     )
    )
   ),
   server = function(input, output) {}
 )
}

tablerDash documentation built on May 2, 2019, 9:58 a.m.