我使用包含道具的基本设置暂时使用FlatList
:data
,renderItem,
keyExtractor etc. But what if I want to skip specifying the
数据prop and the
renderItem`道具,而是将我的单元格直接添加到FlatList上。例如,设置页面。像这样的伪代码:
<FlatList>
<ListCell>
<MyCustomView/>
</ListCell>
<ListCell>
<SomeOtherCustomView/>
</ListCell>
</FlatList>
答案 0 :(得分:-1)
在这种情况下,我认为你不会从FlatList中受益很多。只需将单元格包裹在<View>
中即可。 FlatList非常适合您显示数十个到数百个动态项目并希望有效地重复使用单元格。
[重复评论作为答案]