Missed some viewablePercentThreshold references

Reviewed By: yungsters

Differential Revision: D4603767

fbshipit-source-id: b7674324e961ae43ca1ee74c309f4d98d954fbbc
This commit is contained in:
Spencer Ahrens
2017-02-28 02:09:06 -08:00
committed by Facebook Github Bot
parent a10dbdaaf6
commit f7d1060418
5 changed files with 11 additions and 6 deletions

View File

@@ -105,7 +105,7 @@ type OptionalProps<SectionT: SectionBase<*>> = {
onRefresh?: ?Function,
/**
* Called when the viewability of rows changes, as defined by the
* `viewablePercentThreshold` prop.
* `viewabilityConfig` prop.
*/
onViewableItemsChanged?: ?({viewableItems: Array<ViewToken>, changed: Array<ViewToken>}) => void,
/**

View File

@@ -103,7 +103,7 @@ type OptionalProps = {
onRefresh?: ?Function,
/**
* Called when the viewability of rows changes, as defined by the
* `viewablePercentThreshold` prop.
* `viewabilityConfig` prop.
*/
onViewableItemsChanged?: ?({viewableItems: Array<ViewToken>, changed: Array<ViewToken>}) => void,
/**
@@ -225,7 +225,6 @@ class VirtualizedList extends React.PureComponent<OptionalProps, Props, *> {
nextProps: {item: Item, index: number},
) => true,
updateCellsBatchingPeriod: 50,
viewablePercentThreshold: 10,
windowSize: 21, // multiples of length
};

View File

@@ -106,7 +106,7 @@ type OptionalProps<SectionT: SectionBase> = {
onRefresh?: ?Function,
/**
* Called when the viewability of rows changes, as defined by the
* `viewablePercentThreshold` prop.
* `viewabilityConfig` prop.
*/
onViewableItemsChanged?: ?({viewableItems: Array<ViewToken>, changed: Array<ViewToken>}) => void,
/**