R/Shiny/bs4Dash의 기초 ⑤

5280 단어 RShinybs4DashAdminLTE

Controlbar(오른쪽) 설정



이런 느낌으로 구현. 오른쪽은 이름적으로 컨트롤 패널적인 역할이 좋을지도?
library(shiny)
library(bs4Dash)
library(lubridate)

ui <- bs4DashPage(
  navbar = bs4DashNavbar(),
  sidebar = bs4DashSidebar(),
  body = bs4DashBody(),
  controlbar = bs4DashControlbar(
    dateRangeInput(
      inputId = "date",
      label = "Date:",
      start = today() - months(1),
      end = today() + months(1),
      min = today() - months(3),
      max = today() + months(3)
    ),
    title = "Controlbar",
    skin = "light"
  ),
  footer = bs4DashFooter(),
  title = "yono2844"
)

server <- function(input, output, session) {
}

shinyApp(ui = ui, server = server)

좋은 웹페이지 즐겨찾기