Skip to content

Instantly share code, notes, and snippets.

@kmagiera
Created April 7, 2016 20:42
Show Gist options
  • Save kmagiera/e48e1d67d4ba6cc6eff1f27737036728 to your computer and use it in GitHub Desktop.
Save kmagiera/e48e1d67d4ba6cc6eff1f27737036728 to your computer and use it in GitHub Desktop.
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