This function initializes and runs the "Infinity List" application using
Shiny. Before launching, it checks for any available updates and downloads
them if necessary. The app provides a user interface (ui) and server-side
logic (server) to interactively work with the Infinity List.
Arguments
- ...
Additional arguments passed to shinyApp(). This can include
parameters like port, launch.browser, and others as described
in the documentation for shinyApp().
Value
This function launches the Shiny application and does not return until
the app is terminated by the user.
Details
The function carries out the following steps:
Checks and downloads any available updates using check_and_download_update().
Initializes the user interface (ui) for the application.
Sets up the server-side logic (server) for the application.
Launches the Shiny application using shinyApp().
Examples
if (FALSE) { # \dontrun{
# Launch the Infinity List App
infinitylistApp()
} # }