Remove or Hide Default AppBar

Remove or Hide Default AppBar

avatar
(anonymous user)

Is it possible to hide or remove the default appbar from a dashboard / app? I know you can replace it with New-UDAppBar but I don’t want any appbar for the app I’m working on.

Product: PowerShell Universal
Version: 4.1.4


All Comments (1)

avatar

You can use -Blank on New-UDPage.

New-UDApp -Pages @(
   New-UDPage -Blank -Content { "Stuff!" }
)


Adam Driscoll
PowerShell Expert and Developer at Devolutions