是否也有办法隐藏其他用户的头像,以响应本地有天赋的聊天?我知道您可以隐藏当前用户的头像,但找不到其他用户的头像。
答案 0 :(得分:0)
您可以在renderAvatar属性中重写Avatar组件,该组件将返回null。
例如:
<CustomGiftedChat
messages={messages}
renderAvatar={() => null}
onSend={this.onSend}
user={{
_id: 1,
}}
/>