From f459372cb7fbed7ebc2b7024576ef448de1a84e4 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 22 Dec 2017 18:14:43 +0000 Subject: [PATCH] Deploy website Deploy website version based on c3bf5cc3417d60be60ee13fb93bdb5eccfbcbc2f --- docs/next/animations.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/next/animations.html b/docs/next/animations.html index 4dee87a4fa2..08f182434e1 100644 --- a/docs/next/animations.html +++ b/docs/next/animations.html @@ -5,7 +5,7 @@ nav.classList.toggle('docsSliderActive'); };
Edit

Animations

Animations are very important to create a great user experience. Stationary objects must overcome inertia as they start moving. Objects in motion have momentum and rarely come to a stop immediately. Animations allow you to convey physically believable motion in your interface.

-

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

+

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().