React Native Guideline: Lists — Use getItemLayout for fixed height. Description: Skip measurement for performance. Do: getItemLayout when height known. Don't: Dynamic measurement for fixed items. Good Example: getItemLayout={(_, index) => ({ length: 50, offset: 50 * index, index })}. Bad Example: No getItemLayout for fixed height. Severity: Medium. Docs: .