diff --git a/docs/animated.html b/docs/animated.html index abf70182d39..fc97ef9e549 100644 --- a/docs/animated.html +++ b/docs/animated.html @@ -69,12 +69,12 @@ following animations will be started.

stopTogether flag.

static stagger(time: number, animations: Array<CompositeAnimation>) #

Array of animations may run in parallel (overlap), but are started in sequence with successive delays. Nice for doing trailing effects.

static event(argMapping: Array<Mapping>, config?: EventConfig) #

Takes an array of mappings and extracts values from each arg accordingly, - then calls setValue on the mapped outputs. e.g.

onScroll={this.AnimatedEvent( + then calls setValue on the mapped outputs. e.g.

onScroll={Animated.event( [{nativeEvent: {contentOffset: {x: this._scrollX}}}] {listener}, // Optional async listener ) ... - onPanResponderMove: this.AnimatedEvent([ + onPanResponderMove: Animated.event([ null, // raw event arg ignored {dx: this._panX}, // gestureState arg ]),

static createAnimatedComponent(Component: any) #

Make any React component Animatable. Used to create Animated.View, etc.

Properties #

Value: AnimatedValue #

Standard value class for driving animations. Typically initialized with