-
-
Save kmagiera/e48e1d67d4ba6cc6eff1f27737036728 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Libraries/Animated/src/AnimatedImplementation.js b/Libraries/Animated/src/AnimatedImplementation.js | |
index 21c9903..3fc61e6 100644 | |
--- a/Libraries/Animated/src/AnimatedImplementation.js | |
+++ b/Libraries/Animated/src/AnimatedImplementation.js | |
@@ -1286,7 +1286,7 @@ class AnimatedProps extends Animated { | |
for (var key in this._props) { | |
var value = this._props[key]; | |
if (value instanceof Animated) { | |
- if (!value.__isNative) { | |
+ if (!value.__isNative || true) { | |
// We cannot use value of natively driven nodes this way as the value we have access from JS | |
// may not be up to date | |
props[key] = value.__getValue(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment