How to change the font family of verbatimTextOutput to be the same as the input in Shiny and Shinydashboard?
问题 I would like to change the font family of the verbatimTextOutput to be the same as the input in Shiny and Shinydashboard. Here is an example. # Load the packages library(shiny) library(shinydashboard) # User Interface ui <- dashboardPage( header = dashboardHeader(title = ""), sidebar = dashboardSidebar( sidebarMenu( menuItem( text = "Example", tabName = "tab1" ) ) ), body = dashboardBody( tabItems( tabItem( tabName = "tab1", fluidRow( column( width = 4, numericInput(inputId = "Number", label