We were not able to run the Shiny app. The app is getting into disabled mode. Attached test application in execution mode.

We were not able to run the Shiny app. The app is getting into disabled mode. Attached test application in execution mode.
Sample script which we ran.
library(shiny)
ui <- fluidPage(
textInput("name", "What is your name?"),
actionButton("greet", "Greet"),
textOutput("greeting")
)
server <- function(input, output, session) {
output$greeting <- renderText({
req(input$greet)
paste0("Hello ", isolate(input$name), "!")
})
}
shinyApp(ui, server)

Please find below attached image for reference.

Let me know if need additional info to troubleshoot further.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.