I have the below code to display the widgets inline(in same row) in shiny
div(style=\"display:inline-block; width: 150px;height: 75px;\",selectInput(\"ddllgr
You should create a fluidPage with a fluidRow and then use the column function.
fluidPage(fluidRow(
column(2, selectInput()),
column(1, selectInput()),
column(2, textInput())
)
)
More detail, look up fluidPage,fluidRow and column within shiny function references: http://shiny.rstudio.com/reference/shiny/latest/