I was hoping to get some help on a challenge that I am currently facing.
I just created my first R package for a Shiny app I designed. I watched several tutorials and read the R Package Book by Hadley Wickham and Jenny Bryan.
My app launches correctly and all the features are working, except the ones I used from the package ShinyJs (reset and alert)
For example, I used the shinyjs::reset function, but none of my reset buttons are working. I get no error messages when clicking any reset buttons in my app.
I am not sure why It is not executing . ( I made sure to @import the library shinyjs in my package)
Has anyone experienced a problem similar to this when creating a package that relies on other existing packages?
your best bet is to make a minimal package that is as simple as shiny app as you can do, and use shinys for something trivial, then add the rest of your app into it...