keysInput: Create a keys input control

Description Usage Arguments Examples

View source: R/keys.R

Description

Create a key input that can be used to observe keys pressed by the user.

Usage

1
keysInput(inputId, keys, global = FALSE)

Arguments

inputId

The input slot that will be used to access the value.

keys

A character vector of keys to bind. Examples include, command, command+shift+a, up down left right, and more.

global

Should keys work anywhere? If TRUE, keys are triggered when inside a textInput.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
## Not run: 
ui <- fluidPage(
  keysInput("keys", c(
    "1",
    "2",
    "3",
    "command+shift+k",
    "up up down down left right left right b a enter"
  )),
)

server <- function(input, output, session) {
  observeEvent(input$keys, {
    print(input$keys)
  })
}

shinyApp(ui, server)

## End(Not run)

keys documentation built on July 12, 2021, 1:05 a.m.