From 0792d33cc1aa79de4f1700962bacc4879f69d69b Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Mon, 1 Jul 2019 14:04:34 +0000 Subject: [PATCH] Deploy website Deploy website version based on 4e95434ab827576f4907972ec076dd533ad6f8f0 --- docs/next/animated.html | 2 ++ docs/next/animated/index.html | 2 ++ docs/next/animations.html | 2 +- docs/next/animations/index.html | 2 +- docs/next/javascript-environment.html | 2 +- docs/next/javascript-environment/index.html | 2 +- 6 files changed, 8 insertions(+), 4 deletions(-) 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: