当我尝试使用 实现ScrollView
自定义底部侧板弹出窗口时PanResponder
,ScrollView
滚动将不起作用。
<Modal
animated
animationType="fade"
transparent
visible={open}
onRequestClose={() => handleDismiss()}
>
<View style={styles.overlay}>
<TouchableWithoutFeedback
style={styles.touchableOutsideStyle}
onPress={() => handleDismiss()}
>
<View style={styles.touchableOutsideStyle} />
</TouchableWithoutFeedback>
<Animated.View style={[styles.container, { top }]} {...panResponders.panHandlers}>
<Text style={styles.titleStyle}>
{title}
</Text>
.... <ScrollView> or <FlatList>
</Animated.View>
</View>
</Modal>
我想使用垂直或水平滚动的 ScrollView,虽然我使用FlatList
,但结果是一样的。
先感谢您!