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.
我想在 FlatList 或 ScrollView 内滚动时禁用 TouchableOpacity 的突出显示。onPress 在滚动时没有触发,只是触发了高亮效果。
我试过 delayPressIn 但它只会延迟 onPress 时间而不是突出显示效果。
这有点晚了,但设置delayPressIn={ 50 }到您的touchableOpacity组件应该可以解决您的问题。
delayPressIn={ 50 }
touchableOpacity
参考:https ://stackoverflow.com/a/37642488/9360334