Skip to content

Instantly share code, notes, and snippets.

@anchetaWern
Created May 31, 2019 09:08
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/01bcde8d045b99c4829d360b11201a59 to your computer and use it in GitHub Desktop.
Save anchetaWern/01bcde8d045b99c4829d360b11201a59 to your computer and use it in GitHub Desktop.
React Native Stream Group Chat Tutorial: Send message
// src/screens/Chat.js
onSend = async ([message]) => {
const response = await this.channel.sendMessage({
text: message.text
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment