shinyDashboardLogo {dashboardthemes}R Documentation

shinyDashboardLogo

Description

Calls a custom logo object created using shinyDashboardLogoDIY

Usage

shinyDashboardLogo(
  theme,
  boldText = "Shiny",
  mainText = "App",
  badgeText = "v1.1"
)

Arguments

theme

String. Name of theme to be used

boldText

String. Bold text for the logo.

mainText

String. Main text for the logo.

badgeText

String. Text for the logo badge.

Value

HTML code. Logo for shinydashboard's sidebar.

Note

This logo design was inspired from http://www.dataseries.org/.

See Also

shinyDashboardLogoDIY, shinyDashboardThemes

Examples


#...
### ui
#ui <- dashboardPage(

  ### ui header
  #dashboardHeader(

    ### changing logo
    title = shinyDashboardLogo(
      theme = "blue_gradient",
      boldText = "Shiny",
      mainText = "App",
      badgeText = "v1.1"
    )
    #...


[Package dashboardthemes version 1.1.6 Index]