问题描述
当我尝试使用 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
,但结果是一样的。
先谢谢你!
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)