Skip to content

Instantly share code, notes, and snippets.

@saniyusuf
Last active December 7, 2016 01:11
Show Gist options
  • Save saniyusuf/5fced50f428dd175385df5e8d162f232 to your computer and use it in GitHub Desktop.
Save saniyusuf/5fced50f428dd175385df5e8d162f232 to your computer and use it in GitHub Desktop.
Sample Code Usage For ionViewCanEnter() Ionic Page Lifecycle Function
ionViewCanEnter(): boolean {
if(userIsLoggedIn){
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment