Flatlistのデフォルトでレンダリングされる数は10ですが、
ScrollToIndexとかを使うときにこんなエラーが出て困ったりします.
Invariant Violation: scrollToIndex should be used in conjunction withgetItemLayout or onScrollToIndexFailed,
otherwise there is no way to know the location of offscreen indices or handle failures.
#解決
initialNumToRender={レンダリングする数}
でデフォルトででレンダリングされる数を変更できます.
例
<Flatlist
...
initialNumToRender={9999}
...
/>