#How to hide navbar?

7 messages · Page 1 of 1 (latest)

wanton flare
#

is there a way to hide navbar not just at hiddenBreakpoint?

sturdy garnet
#

alternatively if you are using it as a prop in AppShell

#
<AppShell
  navbar={yourBooleanCondition ? <Navbar>Contents</Navbar> : undefined}
// rest of props
>
// rest of code below
wanton flare
#

I used null instead of undefined