diff --git a/docs/next/animated.html b/docs/next/animated.html index a4673508791..97756989871 100644 --- a/docs/next/animated.html +++ b/docs/next/animated.html @@ -112,6 +112,8 @@
  • Animated.ScrollView
  • Animated.Text
  • Animated.View
  • +
  • Animated.FlatList
  • +
  • Animated.SectionList
  • Composing animations

    Animations can also be combined in complex ways using composition functions:

    diff --git a/docs/next/animated/index.html b/docs/next/animated/index.html index a4673508791..97756989871 100644 --- a/docs/next/animated/index.html +++ b/docs/next/animated/index.html @@ -112,6 +112,8 @@
  • Animated.ScrollView
  • Animated.Text
  • Animated.View
  • +
  • Animated.FlatList
  • +
  • Animated.SectionList
  • Composing animations

    Animations can also be combined in complex ways using composition functions:

    diff --git a/docs/next/animations.html b/docs/next/animations.html index d107f7ff9a8..9a87a08c6b9 100644 --- a/docs/next/animations.html +++ b/docs/next/animations.html @@ -74,7 +74,7 @@

    React Native provides two complementary animation systems: Animated for granular and interactive control of specific values, and LayoutAnimation for animated global layout transactions.

    Animated API

    The Animated API is designed to make it very easy to concisely express a wide variety of interesting animation and interaction patterns in a very performant way. Animated focuses on declarative relationships between inputs and outputs, with configurable transforms in between, and simple start/stop methods to control time-based animation execution.

    -

    Animated exports four animatable component types: View, Text, Image, and ScrollView, but you can also create your own using Animated.createAnimatedComponent().

    +

    Animated exports six animatable component types: View, Text, Image, ScrollView, FlatList and SectionList, but you can also create your own using Animated.createAnimatedComponent().

    For example, a container view that fades in when it is mounted may look like this: