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

React native FlatList, how to create static cells directly on the flatlist?

我已经使用 FlatList 一段时间了,使用包含道具的基本设置:datarenderItem,keyExtractoretc. But what if I want to skip specifying thedataprop and therenderItem` prop,而是将我的单元格直接添加到 FlatList 中。例如设置页面。像这样的伪代码:

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

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

在这种情况下,我认为您不会从 FlatList 中获益太多。你最好把你的细胞包裹在 <View> 中。 FlatList 非常适用于显示数十到数百个动态项目并希望高效地重用单元格的情况。

[重复评论作为答案]