use_vov {vov} | R Documentation |
Enables vov by including the CSS file necessary for the animations.
use_vov()
if (interactive()) {
library(shiny)
library(vov)
ui <- fluidPage(
use_vov(),
fade_in(
h1("Hello world!")
)
)
server <- function(input, output, session) {}
shinyApp(ui, server)
}