See this example and the screenshot of what is produced.
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
virtualSelectInput("picker", "Picker", choices = c("a", "b")),
sliderInput("slide", "Slider", min = 0, max = 10, value = 5))
server <- function(input, output, session){
}
shinyApp(ui, server)