在我的shinydashboardPlus
应用程序中,我使用fluidRow
/column
来指定布局。有时,我在一行中有一个或多个textInput
/selectInput
和一个actionButton
。由于输入元素确实有一个标签,它们在垂直方向上比按钮大,这看起来不是很好。举例来说:
有没有一种简单的方法可以将actionButton
移到下面一点,使其与“local”元素等对齐?
下面是一个简单的例子:
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
ui <- shinydashboardPlus::dashboardPage(
header=shinydashboardPlus::dashboardHeader(title = "Align Example"),
sidebar=shinydashboardPlus::dashboardSidebar(
shinydashboard::sidebarMenu(id = "tabs",
shinydashboard::menuItem(
"Welcome", tabName = "welcome"
)
)
),
body=shinydashboard::dashboardBody(
shinydashboard::tabItems(
shinydashboard::tabItem(tabName="welcome",
shiny::fluidRow(
shinydashboardPlus::box(
status="black", solidHeader = TRUE, width=12, closable = FALSE,
title="Welcome!",
shiny::column(4,
shiny::textInput("username", label="User Name:")
),
shiny::column(4,
shiny::passwordInput("passwd", label="Password:")
),
shiny::column(2,
shiny::selectInput(inputId="dbmode", "Modus:",
choices = c("production", "test", "local"),
selected = "local"
)
),
shiny::column(2,
shiny::actionButton("dbconnect", "Connect!")
)
)
)
)
)
)
)
server <- function(input, output, session) {
}
shiny::shinyApp(ui, server)
3条答案
按热度按时间ubof19bj1#
在SelectorGadget的帮助下,然后搜索SO“margin-bottom”,我找到了this post,这让我找到了
不知道这是不是好的做法,但我现在很高兴。
1bqhqjot2#
我选择了另一种方法:
我研究了shiny如何为同一行中的其他表单组件创建标签。Shiny添加了一个
div
容器,其中的label
类似于下面代码中提供的label
。通过使用shiny使用的相同类,我可以获得正确的尺寸,而无需手动指定像素或距离。brgchamk3#
我能想到的最简单的方法是在操作按钮之前添加一个
br()
: