Create a responsive lightbox gallery with images and videos
UIkitLightbox(src = NULL, caption = NULL)
src | Image path or url. |
---|---|
caption | Image title, description. |
if(interactive()){ library(shiny) shiny::shinyApp( ui = UIkitPage( title = "My UIkit application", UIkitLightbox( src = "https://getuikit.com/docs/images/photo.jpg", caption = "Hello" ) ), server = function(input, output) {} ) }