diff --git a/releases/next/docs/flatlist.html b/releases/next/docs/flatlist.html index 1ab0de4afc6..0ed66df922d 100644 --- a/releases/next/docs/flatlist.html +++ b/releases/next/docs/flatlist.html @@ -68,7 +68,8 @@ and we are working on improving it behind the scenes.
keyExtractor prop.Rendered in between each item, but not at the top or bottom. By default, highlighted and
leadingItem props are provided. renderItem provides separators.highlight/unhighlight
which will update the highlighted prop, but you can also add custom props with
-separators.updateProps.
Rendered at the bottom of all the items. Can be a React Component Class, a render function, or
+separators.updateProps.
Rendered when the list is empty. Can be a React Component Class, a render function, or +a rendered element.
Rendered at the bottom of all the items. Can be a React Component Class, a render function, or a rendered element.
Rendered at the top of all the items. Can be a React Component Class, a render function, or a rendered element.
Optional custom style for multi-item rows generated when numColumns > 1.
For simplicity, data is just a plain array. If you want to use something else, like an
immutable list, use the underlying VirtualizedList directly.
A marker property for telling the list to re-render (since it implements PureComponent). If
diff --git a/releases/next/docs/sectionlist.html b/releases/next/docs/sectionlist.html
index 372934679c3..d2e11188b81 100644
--- a/releases/next/docs/sectionlist.html
+++ b/releases/next/docs/sectionlist.html
@@ -28,7 +28,10 @@ and we are working on improving it behind the scenes.
keyExtractor prop.Rendered in between each item, but not at the top or bottom. By default, highlighted,
section, and [leading/trailing][Item/Separator] props are provided. renderItem provides
separators.highlight/unhighlight which will update the highlighted prop, but you can also
-add custom props with separators.updateProps.
Rendered at the very end of the list.
Rendered at the very beginning of the list.
Rendered at the top and bottom of each section (note this is different from
+add custom props with separators.updateProps.
Rendered when the list is empty. Can be a React Component Class, a render function, or +a rendered element.
Rendered at the very end of the list. Can be a React Component Class, a render function, or +a rendered element.
Rendered at the very beginning of the list. Can be a React Component Class, a render function, or +a rendered element.
Rendered at the top and bottom of each section (note this is different from
ItemSeparatorComponent which is only rendered between items). These are intended to separate
sections from the headers above and below and typically have the same highlight response as
ItemSeparatorComponent. Also receives highlighted, [leading/trailing][Item/Separator],
diff --git a/releases/next/docs/virtualizedlist.html b/releases/next/docs/virtualizedlist.html
index 8ddc727954f..dc5cbe5e86e 100644
--- a/releases/next/docs/virtualizedlist.html
+++ b/releases/next/docs/virtualizedlist.html
@@ -13,7 +13,10 @@ changes. This includes the data prop and parent component state.
key prop on each item and uses that for the React key.
-Alternatively, you can provide a custom keyExtractor prop.The default accessor functions assume this is an Array<{key: string}> but you can override
+Alternatively, you can provide a custom keyExtractor prop.
Rendered when the list is empty. Can be a React Component Class, a render function, or +a rendered element.
Rendered at the bottom of all the items. Can be a React Component Class, a render function, or +a rendered element.
Rendered at the top of all the items. Can be a React Component Class, a render function, or +a rendered element.
The default accessor functions assume this is an Array<{key: string}> but you can override getItem, getItemCount, and keyExtractor to handle any type of index-based data.
debug will turn on extra logging and visual overlays to aid with debugging both usage and
implementation, but with a significant perf hit.
DEPRECATED: Virtualization provides significant performance and memory optimizations, but fully unmounts react instances that are outside of the render window. You should only need to disable