1

悬停我在反应原生应用 使用样式组件可以说我有链接组件:风格的组件:与反应母语和应对本地的Web

import styled from 'styled-components/native'; 

const Link = styled.Text` 
    color: 'red'; 

    &:hover { 
    color: 'blue'; 
    } 
` 

然后我编译“我与react-native-web

都是很大的期望悬停不工作RN码(文字颜色保持red悬停)

我的猜测是,https://github.com/styled-components/css-to-react-native被移除hover定义

任何想法如何解决这个问题?

回答

1

您可以使用onMouseEnter和onMouseLeave,就像在样式化组件的refs部分中一样。 Advanced guide