attachmentBlock {bs4Dash} | R Documentation |
AdminLTE3 attachment container
Description
attachmentBlock create an attachment container, nice to wrap articles... and insert in a box.
Usage
attachmentBlock(..., image, title = NULL, href = NULL)
Arguments
... |
Any element. |
image |
url or path to the image. |
title |
Attachment title. |
href |
External link. |
Author(s)
David Granjon, dgranjon@ymail.com
See Also
Other boxWidgets:
bs4CardLabel()
,
bs4CardSidebar()
,
bs4Carousel()
,
bs4SocialCard()
,
bs4Timeline()
,
cardDropdown()
,
cardProfile()
,
descriptionBlock()
,
userPost()
Examples
if (interactive()) {
library(shiny)
library(bs4Dash)
shinyApp(
ui = dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
box(
title = "attachmentBlock example",
attachmentBlock(
image = "https://adminlte.io/themes/v3/dist/img/user1-128x128.jpg",
title = "Test",
href = "https://google.com",
"This is the content"
)
)
),
title = "attachmentBlock"
),
server = function(input, output) { }
)
}
[Package bs4Dash version 2.3.3 Index]