标签: react-native react-native-flatlist
我正在使用getItemLayout道具来改善滚动体验。但是,虽然列表的加载在末尾显示了加载指示符,但在列表下方加载后,它再次滚动到最后一个加载指示符索引。
这是我的getItemLayout道具代码。
getItemLayout(data, index) { return ( { length: height, offset: (height * index), index: index, } ); }