shinythemes

Change the color tone of a shinytheme

眉间皱痕 提交于 2021-01-28 19:33:41
问题 Friends, is it possible to change the color tone of a shinytheme used? In my case I am using "united" which uses orange and gray. However I would like to make a slightly darker orange, is it possible to make this change? If so, can you please help me? The executable code is below. library(shinyBS) library(shiny) library(shinyjs) ui <- fluidPage( navbarPage(theme = shinytheme("united"), collapsible = TRUE, titlePanel("Old Faithful Geyser Data"), sidebarLayout( sidebarPanel( radioButtons(

Insert Figure in shiny navbarPage

痞子三分冷 提交于 2020-06-23 12:38:07
问题 Friends could help me insert a figure into my shiny navbarPage. I would like to remove the written word "Simulation" in my navbarPage and insert the attached figure instead. Is this possible to do in shiny? any help is appreciated. The executable code is below. library(shiny) library(shinytables) ui <- bootstrapPage( navbarPage(theme = shinytheme("flatly"), collapsible = TRUE, "Simulation", sidebarLayout( sidebarPanel( sliderInput("bins", "Number of bins:", min = 1, max = 50, value = 30) ),