【发布时间】:2020-11-15 13:14:35
【问题描述】:
我正在尝试以闪亮的方式创建特定的布局,并且我坚持减少 tab1 和 tab5 之间的空间:
下面的代码显示了我尝试过的几件事:
body <- dashboardBody(
fluidRow(
tabBox(
height = "300px",
tabPanel("tab1")
),
tabBox(
height = "600px",
tabPanel("tab2"),
tabPanel("tab3"),
tabPanel("tab4")
)
),
fluidRow(
tabBox(
height = "300px",
tabPanel("tab5")
)
)
)
shinyApp(
ui = dashboardPage(
dashboardHeader(title = "example"),
dashboardSidebar(),
body
),
server = function(input, output) {
}
)
我们将不胜感激
【问题讨论】:
标签: r layout shiny shinydashboard