Tips for optimizing FlatList performance in React Native: use getItemLayout prop for fixed height items, leverage removeClippedSubviews for large lists, limit rendered items with maxToRenderPerBatch and windowSize, use initialNumToRender for improving first impression, use keyExtractor for stable keys, and avoid inline functions and variables in render.

Sort: