I am unable to get my content and header title in page in Ionic. Let me know what I am doing wrong.
Expecting to have a bar-positive header with Left and Right button and some content, but its coming totally blank no JS error in console too.
index.html
<body ng-app="starter">
<ion-nav-view></ion-nav-view>
</body>
app.js -
.state('signup', {
url: '/signup',
views: {
'signup': {
templateUrl: 'templates/signup.html'
}
}
})
signup.html -
<ion-header-bar align-title="left" class="bar-positive">
<div class="buttons">
<button class="button">Left Button</button>
</div>
<h1 class="title">Title!</h1>
<div class="buttons">
<button class="button">Right Button</button>
</div>
</ion-header-bar>
<ion-content>
Some content! Some content! Some content! Some content! Some content! Some content! Some content! Some content!
</ion-content>
signup.htmlwill be loaded when your go this state explicitly by hitting the#/signupurl. - Arkantos