bs4dash with sever package conflict box=TRUE doesnt work
HugoGit39 opened this issue · 1 comments
HugoGit39 commented
I am not sure if this is a bs4dash or sever thingy....
the box=TRUE
option doesnt work, see also:
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)