How can i get the arrow that opens the dropdown-menu from the right side to the left in shinyWidgets::pickerInput?
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
pickerInput(
inputId = "name",
label = "Choose option",
choices = c("A", "B", "C"),
options = list(
title = "choose")
)
)
server <- function(input, output) {}
shinyApp(ui = ui, server = server)
Would a simple CSS tweak do the trick for you?