如何在react-native-gifted-chat
中设置悬停链接的样式?
例如,我目前有
const renderBubble = (props) => {
return (
<Bubble
{ ...props }
linkStyle={ {
left: { color: 'gray', textDecorationLine: 'none' }
} }
textStyle={ {
left: { color: 'white' },
right: { color: 'white' },
} }
wrapperStyle={ {
left: { backgroundColor: '#8fafff', borderRadius: 5 },
right: { backgroundColor: '#2dc4b3', borderRadius: 5 },
} }
/>
)
}
但是在源代码或文档文档中看不到我可以控制链接的悬停颜色的