-
-
Save mdsumner/3d4f9973d0cb9f791bb0afc432db7f59 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(shiny) | |
| library(shinyglide) | |
| ui <- fluidPage( | |
| glide( | |
| screen( | |
| h2("Image 1"), | |
| img(src = "image1.png", width = "100%") | |
| ), | |
| screen( | |
| h2("Image 2"), | |
| img(src = "image2.png", width = "100%") | |
| ), | |
| screen( | |
| h2("Image 3"), | |
| img(src = "image3.png", width = "100%") | |
| ) | |
| ) | |
| ) | |
| server <- function(input, output, session) { | |
| # Server logic if needed | |
| } | |
| shinyApp(ui, server) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment