slider images in shiny app

I would like to run slider images html page in shiny app using index.html.

library(shiny)
library(htmltools)

ui <- bootstrapPage(
  h2("Responsive Image Slider"),
  htmlTemplate(filename = "index.html" , name = 'slider')
)

server<- function(input,output){
   
}
shinyApp(ui,server)

image

I have the PNG files which shown in the image.
I would like to show those images in the html output as images slider.

check slickR:

or shinydashboardPlus::carousel

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.