I am builidng a shiny application using a navbarPage() layout. I would like to insert an image to be on the right hand side of the screen, in the navigation bar
navbarPage()
Here is a solution I made based on the previous great answers:
ui <- fluidPage( list( tags$head( HTML(''))), navbarPage("App user name", windowTitle = "App name", ...
The place for saving images is "www" folder on the Shiny app server:
shinyApp/app.R shinyApp/www/favicon.png