Ionic tab is not showing content (white page) in iOS / Android

Hi guys,

I have a problem with my tab is suppose to show ‘options’ to take a picture or upload one from the photo library, but instead is showing a white page. ( #/tab/photo )

Here my app.

What can I do?

Thank you.

hi,

you have type error in app.js

.state('tab.photo', {
     url: '/photo',
      views: {


'tab-chats': { <----- this should be tab-photo  

      templateUrl: 'templates/tab-photo.html',
      controller: 'PhotoCtrl'
    }
  }
})
1 Like

That really helped me!

Thank you! :slight_smile:

1 Like