Image {shiny.fluent}R Documentation

Image

Description

An image is a graphic representation of something (e.g photo or illustration). The borders have been added to these examples in order to help visualize empty space in the image frame.

For more details and examples visit the official docs. The R package cannot handle each and every case, so for advanced use cases you need to work using the original docs to achieve the desired result.

Usage

Image(...)

Arguments

...

Props to pass to the component. The allowed props are listed below in the Details section.

Details

Value

Object with shiny.tag class suitable for use in the UI of a Shiny app.

Examples

library(shiny.fluent)

if (interactive()) {
  shinyApp(
    ui = Image(src = "https://via.placeholder.com/350x150"),
    server = function(input, output) {}
  )
}

[Package shiny.fluent version 0.3.0 Index]