我认为整行是12,所以应该在整个页面上填充4个3宽的列,但事实并非如此。 库(发光)
fluidPage(
mainPanel(
fluidRow(
column(3,
textInput("user_id", "User ID", width = NULL)
),
column(3,
textInput("name", "Organization name",value = "",width = NULL)
),
column(3,
textInput("address", "Address",value = "",width = NULL)
),
column (3,
textInput("zip", "Zip Code",value = "",width = NULL)
)
) #row
) #panel
) #page
答案 0 :(得分:1)
默认情况下,mainPanel
的{{1}}为8。这可以在查看文档时看到:
width
mainPanel(...,width = 8)
因此,您必须在?shiny::mainPanel
调用中明确声明width = 12
。
mainPanel
..应该做到这一点。