Skip to content

Instantly share code, notes, and snippets.

@hieptl
Last active October 13, 2021 12:54
Show Gist options
  • Save hieptl/24819f77db8a05924c5bba4ce1c9c7b4 to your computer and use it in GitHub Desktop.
Save hieptl/24819f77db8a05924c5bba4ce1c9c7b4 to your computer and use it in GitHub Desktop.
App.js - Logout - React Native Gifted Chat App
...
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