React Native FlatList嵌套在具有相同方向的FlatList中

时间:2018-04-05 10:46:07

标签: react-native react-native-android react-native-ios react-native-flatlist react-native-scrollview

我不能创建嵌套在具有相同方向的FlatList内的FlatList;

结果是父级是水平的,但孩子是垂直的;

这是我的代码:

renderSlides(question) {
                return <View key={question.item.code}
                             style={{flex: 1,width:350}}>
                    <FlatList
                        ref='scrollPick'
                        data={[{k:'A'},{k:'b'},{k:'c'}}]}
                        horizontal={true}
                        renderItem={(rate)=>{return (
                            <View >
                                <Text>{rate.item.k}</Text>
                            </View>);}}
                        keyExtractor={ (item, index) => index}
                    />
                </View>;

            }


render() {
        return (
            <View style={CONTAINERS.MAIN_COLUMN_BLUE}>
                <View style={[NAV.CONTAINER_GENERAL, NAV.CONTAINER_ASSESSMENT, {flex: 1}]}>
                    <TopBar barType="ex" title={I18n.t('assessment.title')} navigator={this.props.navigator}
                            closeFunction={this.handleClose}></TopBar>
                </View>
                <FlatList
                    ref={(ref) => { this.flatListRef = ref; }}
                    horizontal={true}
                    data={[{k:'1'},{k:'2'},{k:'3'},{k:'4'},{k:'5'},{k:'6'},{k:'q'}]}
                    renderItem={this.renderSlides}
                    keyExtractor={(item, index) => index}
                    horizontal={true}
                    getItemLayout={this.getItemLayout}
                    contentContainerStyle={{ flexGrow: 1}}
                />
            </View>
        );
    }
}

enter image description here

有没有人遇到同样的问题? (我不能使用scrollView)

1 个答案:

答案 0 :(得分:0)

我终于找到了!

您从 123 导入的第一个 FlatList

react-native

您可以从 import {FlatList} from 'react-native' 导入的第二个(inside-FlatList)

react-native-gesture-handler

然后你可以使用相同的方向,它会起作用。