react native 优聊无法隐藏打字指示器

react native gifted chat can not hide Typing Indicator

我想使用 Gifted Chat 中的打字指示器,这是我显示打字状态的代码:

const [isTyping, setIsTyping] = useState(false)

const renderFooter = (props) => {
        return <TypingIndicator isTyping={isTyping}/>
    }


<GiftedChat>
....
 renderFooter={renderFooter}
 isTyping={isTyping}
 onPressAvatar={() => {
                    console.log('longpressavt', isTyping)
                    setIsTyping(!isTyping)
                }}
</GiftedChat>


我可以在第一次点击头像时显示打字指示器,但下次点击打字指示器不会消失,谁能指导我了解问题?谢谢

试试这个:- shouldUpdateMessage={() => { return true; }}

我从这个 link - https://github.com/FaridSafi/react-native-gifted-chat/issues/2186