Last active
October 13, 2021 12:54
-
-
Save hieptl/24819f77db8a05924c5bba4ce1c9c7b4 to your computer and use it in GitHub Desktop.
App.js - Logout - React Native Gifted Chat App
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
... | |
const handleLogout = (navigation) => { | |
cometChat.logout().then( | |
() => { | |
console.log("Logout completed successfully"); | |
AsyncStorage.removeItem('auth'); | |
setUser(null); | |
navigation.reset({ | |
index: 0, | |
routes: [{ name: 'Login' }] | |
}); | |
}, error => { | |
console.log("Logout failed with exception:", { error }); | |
} | |
); | |
}; | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment