Include dependencies, place anywhere in the shiny UI.
Usage
html_dependency_winbox(
css_rules = "body{min-height:100vh}.winbox.modal{display:block;overflow:unset}"
)
Examples
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
html_dependency_winbox()
)
server <- function(input, output, session) {
WinBox(
title = "WinBox",
ui = tagList(
tags$h3("Hello from WinBox!")
)
)
}
if (interactive())
shinyApp(ui, server)