diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index 6a6db87b54..2c3922b89d 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -3994,6 +3994,9 @@ export interface FlatListProps extends VirtualizedListProps { */ keyExtractor?: (item: ItemT, index: number) => string; + /** + * Uses legacy MetroListView instead of default VirtualizedSectionList + */ legacyImplementation?: boolean; /** @@ -4269,7 +4272,10 @@ export interface SectionListProps extends VirtualizedListWithoutRenderIte * Only enabled by default on iOS because that is the platform standard there. */ stickySectionHeadersEnabled?: boolean; - + + /** + * Uses legacy MetroListView instead of default VirtualizedSectionList + */ legacyImplementation?: boolean; }