Picture as a background of shiny for aspecific tabPanel

I want to set a picture as a background for a specific tabPanel in R shiny. The picture in my browser('data/image1.jpg') not from the internet. Could you please assist me on this regard

library(shiny)
ui <- 
navbarPage("App Title",
               tabPanel("Plot"),# for example I need the background here for Plot tabPanel
               tabPanel("Summary"),
               tabPanel("Table")
)

server <- function(input, output, session) {}


shinyApp(ui, server) 

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.