Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created October 18, 2021 15:55
Show Gist options
  • Save hieptl/3e34e53a46b6bff6a17138ad33f4ad29 to your computer and use it in GitHub Desktop.
Save hieptl/3e34e53a46b6bff6a17138ad33f4ad29 to your computer and use it in GitHub Desktop.
Chat.tsx - Start Audio/Video Call - Ionic Chat App
...
const startAudioCall = () => {
if (cometChat && selectedConversation) {
setCallType(cometChat.CALL_TYPE.AUDIO);
}
};
const startVideoCall = () => {
if (cometChat && selectedConversation) {
setCallType(cometChat.CALL_TYPE.VIDEO);
}
};
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment