FlatList/ScrollView 不在 Touchable 之间滚动

FlatList/ScrollView doesn't scroll between Touchables

我有一个包含 Touchables 作为其 renderItem 的 FlatList。出于某种原因,除非您在其中一个可触摸对象上开始滚动,否则滚动不起作用。也就是说,如果我单击项目之间的 space(padding/margin)并尝试滚动,它不起作用。

        <Modal
            onStartShouldSetResponder={() => true}
            animationType="slide"
            transparent={true}
            visible={modalVisible}>
            <View onStartShouldSetResponder={() => true} style={styles.modalView}>
                <Text style={styles.modalText}>Comments</Text>

                <FlatList
                    onStartShouldSetResponder={() => true}

                    data={comments}
                    renderItem={(item) => {
                        return <Comment key={item.item.text} item={item.item} />;
                    }}></FlatList>
            </View>
        </Modal>

如您所见,我尝试在各处设置 onStartShouldSetResponder,但它似乎没有任何作用。

作为参考,评论组件如下所示:

const Comment = ({item}) => {
        console.log('NOTHING MAKES SENSSEEE');
        console.log('comment id, cluck id', item.cluck, data.id, data.username);
        return (
            <View key={item.text} style={styles.commentWrapperStyle}>
                <View style={{flex: 1, flexDirection: 'row'}}>
                    <Image
                        source={{
                            uri: item.user.photoURL,
                        }}
                        style={styles.profileStyle}
                    />
                    <TouchableOpacity
                        onPress={() => {
                            setReplyPlaceholder(`Reply to ${item.user.name}`);
                            inputEl.current.focus();
                            setSendFunction(
                                () =>
                                    function (event) {
                                        if (event.nativeEvent.text.trim() !== '') {
                                            const user = firebase.auth().currentUser;
                                            var db = firebase.firestore();
                                            const id = 'UbWIMWFCOGbs00S2ZcPN';
                                            const newReplies = item.replies + 1;
                                            console.log(item.replies, item.children);
                                            item.children.push({
                                                user: {
                                                    name: user.displayName,
                                                    photoURL: user.photoURL,
                                                    userId: user.uid,
                                                },

                                                cluck: data.id,
                                                text: event.nativeEvent.text,
                                                likes: 2,
                                            });
                                            db.collection('comments').doc(id).update({
                                                replies: newReplies,
                                                children: item.children,
                                            });
                                            setComment('');
                                        }
                                    },
                            );
                        }}
                        style={{}}>
                        <View style={{flex: 1, flexDirection: 'row'}}>
                            <Text style={styles.textBold}>{item.user.name}</Text>
                            <Text style={styles.textBold}>
                                {renderPostTime(new Date(), item.date)}
                            </Text>
                        </View>
                        <Text style={styles.commentTextStyle}>{item.text}</Text>
                    </TouchableOpacity>
                </View>
                <RepliesButton item={item} />
            </View>
        );
    };

在图像上开始滚动也没有任何作用。由于某些原因,滚动只响应 Touchable。

我修复了它,大量使用了手势响应系统:https://reactnative.dev/docs/gesture-responder-system

具体来说,我必须用包含在滚动视图中的视图替换我的 FlatList。视图有道具 onMoveShouldSetResponder={(evt)=>true}:

<ScrollView>
    <View onMoveShouldSetResponder={(evt)=>true}>
        ...
    </View>
</ScrollView>

我原来的 TouchableWithoutFeedback 包装了我必须用另一个替换的所有东西

<View onStartShouldSetResponder={()=>{
    setState(true);
    return false;
    }}
>
...
</View>

返回 false 之前的 setState 很重要,因为它让我可以做我想做的事,而无需阻止 ScrollView 在需要时控制触摸。

无论如何,所有这些都破坏了我最初作为 renderItem 组件拥有的内部 Touchable,因此我不得不用具有响应道具的类似视图替换它们。