bs4Dash icon indicating copy to clipboard operation
bs4Dash copied to clipboard

bs4dash with sever package conflict box=TRUE doesnt work

Open HugoGit39 opened this issue 4 months ago • 0 comments

Hi @DivadNojnarg

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

the box=TRUE option doesnt work, see also:

https://github.com/JohnCoene/sever/issues/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)

HugoGit39 avatar Feb 14 '24 21:02 HugoGit39