标签: reactjs react-native
我使用了neat array并在其上添加了一些道具:
neat array
但是当我使用Flow检查我的代码时。我收到以下错误:
似乎SectionIist正在检查Flow提供的组件?
SectionIist
Flow
答案 0 :(得分:0)
使用您的keyExtractor keyExtractor={(item, index) => your_title+index}。我为index目的添加了unique key。尝试如下,
keyExtractor
keyExtractor={(item, index) => your_title+index}
index
unique key
<SectionList keyExtractor={(item, index) => `${item.title}_${index}`} />