Last active
December 7, 2016 01:11
-
-
Save saniyusuf/5fced50f428dd175385df5e8d162f232 to your computer and use it in GitHub Desktop.
Sample Code Usage For ionViewCanEnter() Ionic Page Lifecycle Function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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