diff --git a/releases/next/docs/flatlist.html b/releases/next/docs/flatlist.html index 8253ea20a18..9691b120413 100644 --- a/releases/next/docs/flatlist.html +++ b/releases/next/docs/flatlist.html @@ -65,7 +65,7 @@ changes. This includes the data prop and parent component state.
  • By default, the list looks for a key prop on each item and uses that for the React key. -Alternatively, you can provide a custom keyExtractor prop.
  • Also inherets ScrollView Props, unless it is nested in another FlatList of same orientation.

    Props #

    numColumns?: #

    Methods #

    scrollToEnd(params?: object) #

    Scrolls to the end of the content. May be janky without getItemLayout prop.

    scrollToIndex(params: object) #

    Scrolls to the item at the specified index such that it is positioned in the viewable area +Alternatively, you can provide a custom keyExtractor prop.

    Also inherits ScrollView Props, unless it is nested in another FlatList of same orientation.

    Props #

    numColumns?: #

    Methods #

    scrollToEnd(params?: object) #

    Scrolls to the end of the content. May be janky without getItemLayout prop.

    scrollToIndex(params: object) #

    Scrolls to the item at the specified index such that it is positioned in the viewable area such that viewPosition 0 places it at the top, 1 at the bottom, and 0.5 centered in the middle. viewOffset is a fixed number of pixels to offset the final target position.

    Note: cannot scroll to locations outside the render window without specifying the getItemLayout prop.

    scrollToItem(params: object) #

    Requires linear scan through data - use scrollToIndex instead if possible.

    Note: cannot scroll to locations outside the render window without specifying the