Hello There.
I would like to create a navbar
in which the fist tab has a navlistPanel
on the left which is consist of several parts like so:
ui = navbarPage("Whatever", inverse=TRUE, collapsable=TRUE,
tabPanel(title = "Home",
fluidRow(
column(5, offset = 0,
navlistPanel(
tabPanel(title = "About", br(), textOutput('aboutText')),
tabPanel(title = "Contact Us", br(), textOutput('PeopleNames'))
)
)
)
)
How can I add a text file for each section. For example I want to have a text when I click on "About"
or "Contact Us".
I want for the text to have title which is bold and centered, etc.
P.S. Perhaps the textOutput('aboutText')
I wrote in there is not the best practice(?)
Example:
Any help is deeply appreciated.
Best