Hi there, one way to do this is to hide that sidebar toggle using CSS. You can leverage shinyjs to put the necessary code within the app if you don't have/want to make a separate stylesheet:
shinyApp(
ui =
dashboardPage(skin = "yellow",
dashboardHeader(title = "Data Dashboard"),
dashboardSidebar(sidebarSearchForm(textId = "search_bar", buttonId = "search_btn", label = "Search Town",
icon = shiny::icon("search"))),
dashboardBody(
shinyjs::useShinyjs(),
shinyjs::inlineCSS("body > div > header > nav > a {visibility: hidden}")
)
),
server = function(input, output) {
}
)