闪亮的R按钮对齐

我的Ui文件中有两个按钮

 submitButton("Analysis"),width=6,downloadButton('downloadData', 'Download Data'))

其中以应用程序的形式提供以下输出

在这里输入图像描述

不过,我正在尝试对齐这些按钮,以便下载数据右对齐,分析按钮位于左侧,而不是现在的样子。 我如何去做这件事?


您可以执行以下操作。 请同时查看闪亮的4个小文本输入框

library(shiny)

ui =fluidPage(
  div(style="display:inline-block",submitButton("Analysis"),width=6),
  div(style="display:inline-block",downloadButton('downloadData', 'Download Data'))
)
server = function(input, output, session){}
runApp(list(ui = ui, server = server))

链接地址: http://www.djcxy.com/p/84021.html

上一篇: Shiny R Button Alignment

下一篇: How to handle socket disconnects in Dart?