바르고 뜨겁게

[React native] FlatList with large content rows will crash only on iOS physical device 본문

자바스크립트/React Native

[React native] FlatList with large content rows will crash only on iOS physical device

RightHot 2020. 7. 28. 17:13

FlatList에 데이터가 많이 담기면 에러 로그도 없이 IOS 앱이 죽는 현상이 있음.

(안드로이드는 문제 없음)


FlatList 내에 아래 코드를 추가하면 해결 됨.


<FlatList
   initialNumToRender={1} // add
/>



Comments