Title is not showing up in ion-view field in ionic 1.0.0-beta.12

I was trying to use ion-view in latest version of ionic framework but title is not showing up . May be I am doing anything wrong.

Even with latest 14beta

Here is my Codepen - http://codepen.io/vinay885/pen/ZYOPVa]

But with older version , it is showing up : - http://codepen.io/calendee/pen/AHIuh/

@rajul885, you are using nav-bar instead of ion-nav-bar. Check this out.
In your ‘wrong’ Codepen version, you are using ion-view, ion-nav-view but you missed the ion-nav-bar.

This is what you should do:

<ion-nav-bar animation="nav-title-slide-ios7" 
             type="bar-positive" 
             back-button-type="button-icon" 
             back-button-icon="ion-arrow-left-c"></ion-nav-bar>

:wink:

1 Like

thanks a lot :smile: