My ionic app is showing a blank screen or the page does not fully render. Please help I’ve been stuck on this issue for three days.
I have tried :
a)
b) $stateProvider.state(‘nameOfState’, {
templateUrl: ‘/templates/nameOfTemplate.html’,
})
to
$stateProvider.state(‘nameOfState’, {
templateUrl: ‘./templates/nameOfTemplate.html’,
})
c) removing the first slash from
templateUrl: "/templates/pages/products/index.html",
and transformed it to:
templateUrl: "templates/pages/products/index.html"
d) timeout before state.go()
I’m lost here. Why does ionic not work well with ios?? Or is it me ?