When I use the dateInput() in shiny use my phone, the keyboard will appear.
It is work fine in My pc, but when I use the phone, keyboard will show up.
Is there any method to stop keyboard pop up of phone?
I also find the same question when I use the selectInput() function. Add the selectize = FALSE
is useful in selectInput.
Is there any other way to stop keyboard pop up in phone? The selectize = FALSE
will make selection harder in mobile devices.
`
library(shiny)
ui <- fluidPage(
dateInput(
"date",
"What is your brithday?",
))
server <- function(input, output, session){}
shinyApp(ui=ui, server=server)
`