# Example of shinykeyboard Shiny Input
library(shiny)
library(shinykeyboard)
ui <- function() {
fluidPage(
keyboardInput("keebs", color_palette = "sharla3"),
verbatimTextOutput("debug")
)
}
server <- function(input, output) {
output$debug <- renderPrint(input$keebs)
}
shinyApp(ui = ui, server = server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.