How do I hide the bar at the top that has the tab's name?

In one of my tabs I have:

<ion-view title="Hello">
    <ion-content class="has-header">
        etc...

At the top of that tab is a bar with the text “Hello” in it.

How do I make that bar go away for this tab?

Thank you.

use hide-nav-bar=“true” directive inside ion-view i.e.

<ion-view hide-nav-bar="true">

That was it!

Thank you again khyamay.

You are welcome, it just happened that I had same problem few weeks ago :slight_smile: