Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anchetaWern/086f169f0109949754202c3cb2627dde to your computer and use it in GitHub Desktop.
Save anchetaWern/086f169f0109949754202c3cb2627dde to your computer and use it in GitHub Desktop.
React Native Stream Group Chat Tutorial: Hide or show users modal
// src/screens/Chat.js
hideModal = (type) => {
this.setState({
is_users_modal_visible: false
});
}
showUsersModal = () => {
this.setState({
is_users_modal_visible: true
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment