is there any way to add new dynamic pages on Ionic Framework?
Can I edit in some way $stateProvider
adding new pages from a controller?
$stateProvider
.state('loading', {
name: 'newpage' + dyn,
url: '/newpage' + dyn,
templateUrl: 'thisisfixed.html',
controller: 'PageCtrl',
})
Thanks, Claudio