React native FlatList,如何直接在flatlist上创建静态单元格?

时间:2017-10-26 05:43:38

标签: uitableview react-native datasource react-native-flatlist

我使用包含道具的基本设置暂时使用FlatListdatarenderItem, keyExtractor etc. But what if I want to skip specifying the数据prop and the renderItem`道具,而是将我的单元格直接添加到FlatList上。例如,设置页面。像这样的伪代码:

<FlatList>
    <ListCell>
        <MyCustomView/>
    </ListCell>

    <ListCell>
        <SomeOtherCustomView/>
    </ListCell>
</FlatList>

1 个答案:

答案 0 :(得分:-1)

在这种情况下,我认为你不会从FlatList中受益很多。只需将单元格包裹在<View>中即可。 FlatList非常适合您显示数十个到数百个动态项目并希望有效地重复使用单元格。

[重复评论作为答案]