Development/Error

[error] VirtualizedList: You have a large list that is slow to update - make sure your renderItem function renders components that follow React performance best practices like PureComponent, shouldComponentUpdate

mefd 2024. 1. 22. 16:54
728x90

원인 : VirtualizedLists는 같은 방향으로 일반 ScrollView와 중첩되어서는 안 된다.

 

해결 : FlatList 속성에 코드 한 줄만 추가하면 된다.

disableVirtualization={false} //비정상적인 스크롤 동작을 방지하려고

728x90