在react-native-gifted-chat中设置悬停样式

时间:2019-08-26 20:59:06

标签: react-native-gifted-chat

如何在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 },
            } }
        />
    )
}

但是在源代码或文档文档中看不到我可以控制链接的悬停颜色的

0 个答案:

没有答案