how to hide ion-header-bar ionic 1

0

I'm trying to hide ion-header-bar so that the background image of everything is under the butoom back and the title

this is the code of sight

ion-view view-title="{{chat.name}}">
    <ion-content class="">
        <div class="perfilDomiciliarios">
            <img src="{{chat.face}}" class="imgBackDomi">
        </div>
        <div class="contImgPerfilDomi">
            <img src="{{chat.face}}" class="imgPerfilDomi">
            <h4>{{chat.name}}</h4>
        </div> 
    </ion-content>
</ion-view>

wanting to achieve this view

    
asked by frd 31.05.2017 в 18:28
source

1 answer

0

You can try with the tag:

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

If that does not work you could also hide it from the css by passing the hidden attribute.

Greetings.

    
answered by 01.06.2017 в 04:42