我有一个FlatList
我想根据方向更改列数的地方。但是,当我这样做时,我得到了红屏。根据红屏错误消息,我不太确定应该如何更改关键props。任何帮助表示赞赏。
// dynamically changing number of columns
const numCols = orientation === constants.PORTRAIT ? 3 : 8
<FlatList
keyExtractor={(_, i) => i}
numColumns={numCols} // assigning the number of columns
horizontal={false}
renderItem={({ item }) => <ListItem imageUrl={item.url} />}
/>}