react-native-gifted-chat
react-native-gifted-chat copied to clipboard
isTyping prop not showing typing indicator on web
Issue Description
isTyping prop not showing typing indicator on web
Steps to Reproduce / Code Snippets
isTyping prop not showing typing indicator on web
Expected Results
show typing indicator on web
Any workarounds available?
This is a really old issue, but in case anyone else comes here looking for an answer, I was able to create my own typing component and conditionally render it in GiftedChat's renderFooter method like so:
renderFooter: () => {
return chatRecipientIsTyping ? <TypingIndicator /> : null;
},