Nurdin
Nurdin

Reputation: 23883

Ionic - How to remove header title?

How to remove header title in ionic? I want to remove login title inside my header.

my code

<ion-view  hide-back-button="true">
  <ion-nav-buttons side="left">
    <button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
  <h1 class="title"><img class="title-image" src="img/header_logo.png" /></h1>
   </ion-nav-buttons>
  <ion-content class="has-header">
    <ion-list>
      <ion-item ng-repeat="playlist in playlists" href="#/app/home/{{playlist.id}}">
        {{playlist.title}}
      </ion-item>
    </ion-list>
  </ion-content>
</ion-view>

Current issue

enter image description here

Upvotes: 6

Views: 12300

Answers (2)

LeRoy
LeRoy

Reputation: 4436

Add this to your view

<ion-view hide-nav-bar="true" hide-back-button="true" view-title="welcome">

Upvotes: 9

Bipin Bhandari
Bipin Bhandari

Reputation: 2692

How about this:

<ion-view title=''>

Put any html content inside title and it will re rendered as html.

<ion-view title='<img class="title-image" src="images/logo.png" />'>

Upvotes: 8

Related Questions