diff --git a/Libraries/Animated/src/AnimatedImplementation.js b/Libraries/Animated/src/AnimatedImplementation.js index 7fb99069c..dc8fcc162 100644 --- a/Libraries/Animated/src/AnimatedImplementation.js +++ b/Libraries/Animated/src/AnimatedImplementation.js @@ -671,7 +671,6 @@ var _uniqueId = 1; */ class AnimatedValue extends AnimatedWithChildren { _value: number; - _startingValue: number; _offset: number; _animation: ?Animation; _tracking: ?Animated; @@ -680,7 +679,7 @@ class AnimatedValue extends AnimatedWithChildren { constructor(value: number) { super(); - this._startingValue = this._value = value; + this._value = value; this._offset = 0; this._animation = null; this._listeners = {}; @@ -879,7 +878,8 @@ class AnimatedValue extends AnimatedWithChildren { __getNativeConfig(): Object { return { type: 'value', - value: this._startingValue, + value: this._value, + offset: this._offset, }; } }