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