Hi,
I'm new to slickR, I wonder if there are any parameters or functions to change figure size according to browser window size automatically. When the figure size is larger than the browser window, the figure is not fully displayed.

I'm using slickR 0.5.0, the codes I used:
output$carousel <- renderSlickR({
slickR(list.files(path = './',full.names = T,pattern = "png"),
slideId = 'myslick') +
settings(dots = TRUE,
autoplay = TRUE)
})