Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
React Native Victory 图表:在 android 中不会触发 onPress 或 onPressIn。但是在 iOS 中是可以的。
任何人都可以帮助我解决这个问题。
我发现(通过阅读解决类似问题的其他 stackoverflow 问题)将整个 VictoryChart 包装在 an 中<Svg>...</Svg>解决了 Android 上的这个问题,另一方面在 iOS 上保留了 onPress 功能。我唯一意识到的是,我必须给 Svg 一个style={{height: XXX}}XXX 与 VictoryChart 相同的高度。否则,包装 Svg 将非常高。
<Svg>...</Svg>
style={{height: XXX}}