I am writing a shiny application and in the UI I want the radio buttons and select input options to be in one row.
My ui. R file looks like:
library(shiny)
library(shinydashboard)
dashboardPage(skin = "blue",
dashboardHeader(title = 'Analysis'),
dashboardSidebar(
sidebarMenu(
menuItem("Summary", tabName = "summary", icon=icon("bar-chart"))
)
),
dashboardBody(
tabItems(
tabItem(tabName ="summary",
fluidRow(
radioButtons("radio", "Options",
list("A","B","C"), inline = TRUE, selected = "A"),
selectizeInput("month", "Month", multiple = T, choices = NULL),
selectizeInput("year", "Year", multiple = T, choices = NULL)
)
)
)
)
)
How can I make all three in one single line(in one row)?