I would like to align so that the button is align with the text box and not the header of the text. How can I can do? Additionally, also that the textbox + botton fills up the whole gray space
Example
library(shiny)
library(shinyBS)
ui = fluidPage(
sidebarPanel(
splitLayout(textInput("datset_location", "Data location ", value = "", width = NULL, placeholder = NULL), uiOutput("uiExample"))
)
)
server = function(input, output, seassion){
output$uiExample <- renderUI({
tags$span(
popify(bsButton("pointlessButton", "Button", style = "primary", size = "Large"),
"Select data",
"Type the location of the data"),
)
})
}
shinyApp(ui = ui, server = server)