From df5dd0b395d62ecdaee743ba88582164148633ca Mon Sep 17 00:00:00 2001 From: "Dotan J. Nahum" Date: Tue, 23 Feb 2016 08:39:28 -0800 Subject: [PATCH] Docs: Animations.md, clarify how navigation animation is configured. Summary:This clarifies where the configuration goes, saves a few clicks. Closes https://github.com/facebook/react-native/pull/6034 Differential Revision: D2965844 fb-gh-sync-id: d6ea469ead0dc380f1686e62a2211e8736c75516 shipit-source-id: d6ea469ead0dc380f1686e62a2211e8736c75516 --- docs/Animations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Animations.md b/docs/Animations.md index 10f39911a..1c570a952 100644 --- a/docs/Animations.md +++ b/docs/Animations.md @@ -382,7 +382,7 @@ Here we animated the opacity, but as you might guess, we can animate any numeric value. Read more about react-tween-state in its [README](https://github.com/chenglou/react-tween-state). -### Rebound (Not recommended - use [Animated](#animated) instead) +### Rebound (Not recommended - use [Animated](docs/animation.html) instead) [Rebound.js](https://github.com/facebook/rebound-js) is a JavaScript port of [Rebound for Android](https://github.com/facebook/rebound). It is @@ -529,7 +529,7 @@ around native functionality provided by `UINavigationController`, so these scene transitions apply only to `Navigator`. In order to re-create the various animations provided by `UINavigationController` and also make them customizable, React Native exposes a -[NavigatorSceneConfigs](https://github.com/facebook/react-native/blob/master/Libraries/CustomComponents/Navigator/NavigatorSceneConfigs.js) API. +[NavigatorSceneConfigs](https://github.com/facebook/react-native/blob/master/Libraries/CustomComponents/Navigator/NavigatorSceneConfigs.js) API which is then handed over to the [Navigator](https://github.com/facebook/react-native/blob/master/Libraries/CustomComponents/Navigator/Navigator.js) `configureScene` prop. ```javascript import { Dimensions } from 'react-native';