From NativeScript official documentation:
Тhе actionBarVisibility is a property that controls the visibility of the Navigation Bar in iOS and the Action Bar in Android for the current Frame. It should be set directly to the Frame and has three option values auto, never, always.
<Frame id="my-frame-id" actionBarVisibility="never" defaultPage="home/home-page"/>
But I found no Frame tag in NativeScript Angular.
Where can I found it? Or how do I hide action bar in NativeScript Angular?
You can add the
actionBarVisibilityto thepage-router-outletelement in theapp.component.htmllike the snippet below:To hide it for specific pages you can set the
actionBarHiddenproperty of thePageclass like the snippet below: