react-native-gifted-chat icon indicating copy to clipboard operation
react-native-gifted-chat copied to clipboard

isTyping prop not showing typing indicator on web

Open markwindsorr opened this issue 2 years ago • 2 comments

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

markwindsorr avatar May 25 '22 13:05 markwindsorr

Any workarounds available?

nikkwong avatar Nov 29 '23 00:11 nikkwong

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;
		},

OneHatRepo avatar Dec 24 '23 01:12 OneHatRepo