Tychobra / polished

Authentication and Administration for Shiny apps
https://polished.tech
Other
234 stars 36 forks source link

shiny app written with old functions= shinyUI() and shinyServer() #173

Closed spicalski closed 2 years ago

spicalski commented 2 years ago

The application was written using the object in shinyUI and the function in shinyServer As I understand the polished package does not run in this old format And my application is too big to make the ui.r and server.r changes

https://treemeter3.shinyapps.io/Fitossociologia/

https://treemeter3.shinyapps.io/Dendrometria/

merlinoa commented 2 years ago

you should be able to just remove the shinyUI() and shinyServer() functions wrapping your UI and server. These functions are deprecated in {shiny}. You can use and app.R file structure, rather than the server.R/ui.R file structure, without the shinyUI() and shinyServer() functions. Let me know if that does not resolve your issue.

merlinoa commented 2 years ago

Closing this issue because I think it is resolved. Please reopen if removing the shinyUI and shinyServer wrapper functions does not solve your issue.