From c8c9848b470d3f7c8f1d2a576e56f182e945c60f Mon Sep 17 00:00:00 2001 From: Christian Falch Date: Fri, 7 Dec 2018 11:32:56 +0100 Subject: [PATCH] Update Transition.md --- docs/Transition.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Transition.md b/docs/Transition.md index 78e7669..fe2d643 100644 --- a/docs/Transition.md +++ b/docs/Transition.md @@ -45,6 +45,9 @@ The `appear` property defines either a name of a predefined transition or a func ### Disappear The `disappear` property of the `Transition` element is used (if not set the appear property is used) when the screen for the element is navigated from. You can use the same predefined transitions as for the `appear` property or a custom transition function. +### Inline +The `inline` property will run the defined transition inline and not create a duplicate version of the Transition View in the Transition Overlay. + ### Delay The `delay` property of the `Transition` element is used to specify that the element should be delayed when in transition. When one or more elements are delayed, their transition will start sequentially to give the impression that the different elements appear at a different time. The delay property is a true/false property. @@ -54,9 +57,6 @@ The `anchor` property of the `Transition` element can be used to bind the transi ### Animated The `animated` property of the `Transition` element can be used to bind the interpolation driving the main transition to a property on the inner element you are rendering. This can be used to create animated components with custom animations, imagine an animated SVG transforming from one path to another, or a shape changing its apperance as the navigation transition is performed. -### Inline -The `inline` property will run the defined transition inline and not create a duplicate version of the Transition View in the Transition Overlay. - To use this functionality in your own components, create a property that expects an interpolation (Animated.Value). You can see an example of this in the [Animated Property example](https://github.com/fram-x/FluidTransitions/blob/develop/Examples/AnimatedProperty.js).