标签: react-native react-native-flatlist
我想在我的FlatList中使用getItemLayout,但是我没有在React-Native文档中看到其中存在ItemSeparator的示例。我的问题是这是计算getItemLayout的正确方法吗?
getItemLayout={(_, index) => ({ length: ItemHeight, offset: (ItemHeight + SeparatorHeight) * index, index })}