skip to Main Content

Html – Control distance between actionButton and downloadButton

I have a Shiny app that features a downloadButton and an actionButton that are separated: Here is the reproducible code: library(shiny) ui <- fluidPage( titlePanel("Minimal App"), hr(), sidebarLayout( sidebarPanel( "Placeholder" ), mainPanel("Placeholder", br(), fluidRow("Placeholder"), fluidRow( column(2, downloadButton("download")), column(1, actionButton("send_email", "Email",…

VIEW QUESTION
Back To Top
Search