RinteRface/bs4Dash

bs4dash with sever package conflict box=TRUE doesnt work

HugoGit39 opened this issue · 1 comments

Hi @DivadNojnarg

I am not sure if this is a bs4dash or sever thingy....

the box=TRUE option doesnt work, see also:

JohnCoene/sever#18

library(shiny)
library(sever)
library(bs4Dash)

ui <- dashboardPage(
  header = dashboardHeader(),
  sidebar = dashboardSidebar(disable = T),
  body = bs4DashBody(
  useSever(),
  h1("sever")
  )
)

server <- function(input, output){
  sever(bg_color = "#DDDDDD75", color = "black", box = T)

}

shinyApp(ui, server)