r语言 - 为什么不同的 Shiny UI 包不能相互集成



Rshiny 中的罐装软件包为任何基本的 Rshiny 应用程序提供了库存外观。更高级的用户可能会选择 HTML 模板。我遇到的Rshiny UI罐装软件包是Shiny Dashboard,Shiny Material Design和Flex仪表板。但是,为什么不可能调用仪表板页面,然后有闪亮的材料设计按钮,输入或卡,反之亦然?

是什么阻止他们集成和使用跨来自定义应用程序?

类似于下面的代码(没有按预期运行(

library(shinydashboard)
library(shiny)
library(shinymaterial)
ui <- dashboardPage(dashboardHeader(),
                    dashboardSidebar(material_row(
                      material_column(
                        width = 2,
                        material_card(
                          title = "",
                          depth = 4,
                          material_switch(
                            input_id = "trend_line",
                            label = "Trend Line",
                            off_label = "",
                            on_label = ""
                          ),
                          material_radio_button(
                            input_id = "plot_theme",
                            label = "Theme",
                            choices =
                              c(
                                "Default" = "default",
                                "Classic" = "classic",
                                "Light" = "light",
                                "Dark" = "dark"
                              )
                          )
                        )
                      )
                    )),
                    dashboardBody())
server <- function(input, output) {
}
shinyApp(ui, server)

这似乎是您无法混合和匹配的当前问题,因为 shinymaterial 中使用的一些 CSS 样式表与其他包(例如一些基本的 shiny 输入或 htmlwidgets(重叠(见这里(。

相关内容

  • 没有找到相关文章

最新更新