0

当我尝试使用 实现ScrollView自定义底部侧板弹出窗口时PanResponderScrollView滚动将不起作用。

        <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,但结果是一样的。

先感谢您!

4

0 回答 0