Remove or Hide Default AppBar

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

You can use -Blank on New-UDPage.

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