Browse SDKs · React Native
SDKsReact Native

Report typing status

OpenIM React Native SDK guide for report typing status.

Copy

Use typingStatusUpdate() to send a typing hint to the other participant in a direct chat.

await OpenIMSDK.typingStatusUpdate({
  recvID: receiverUserID,
  msgTip: 'Typing...',
});

Parameters

ParameterTypeRequiredDescription
recvIDstringYesUser ID receiving the typing hint.
msgTipstringYesTyping hint text to send.

After the call completes, the typing hint has been sent. To update the current account's input state based on conversation focus, use Update input states.