Pass reactives to flexdashboard
问题 I have a large Shiny app, and I would like to provide the possibility to export a flexdashboard report. Thus, I added a downloadHandler which passes certain params to the flexdashboard. The flexdashboard itself should work without being deployed on a server, thus I do not use the runtime: shiny option. How can I pass reactive values to the flexdashboard? If I do something like params <- list(y = test()) , the report creation breaks. Relevant part of server.R: test <- reactive({ [[SOME STUFF]]