Skip to content

Commit

Permalink
Update Transition.md
Browse files Browse the repository at this point in the history
  • Loading branch information
chrfalch committed Dec 7, 2018
1 parent 2c3a9fc commit c8c9848
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/Transition.md
Expand Up @@ -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.

Expand All @@ -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).

0 comments on commit c8c9848

Please sign in to comment.