在android中,我无法滚动到最后一个索引,但在ios中工作正常。这是我的代码,请检查
scrollToEnd = () => {
if (Platform.OS === 'ios') {
this.listRef.scrollToEnd();
} else {
// /this.listRef.scrollTo({animated: true}, 0);
// _.delay(this.listRef.scrollToEnd, 100);
//_.delay(this.listRef.scrollTo({ y: 0}), 100);
// setTimeout(() => {
// this.listRef.scrollToIndex({
// 0,
// viewPosition: 0.5
// })
// }, 100)
// this.listRef.current.scrollToEnd();
}
};