How do I highlight active code in a shiny app?

后端 未结 1 964
情歌与酒
情歌与酒 2021-01-23 04:26

IS there a way to highlight shiny app coding when the code is changed?

For example, the \"Hello Shiny\" example app:

library(shiny)
runExample(\"01_hello         


        
1条回答
  •  情歌与酒
    2021-01-23 05:24

    Maybe this can help:

    shiny::runApp(display.mode="showcase")
    

    You can get more information about this here. See Showcase Mode

    If you're using shinyApp() directly, try this:

    shinyApp(ui, server, options = list(display.mode='showcase'))
    

    0 讨论(0)
提交回复
热议问题