From f4f08d3c549f2af7cd04ef78fe800d3bc12af1f0 Mon Sep 17 00:00:00 2001 From: Thibault Malbranche Date: Mon, 5 Aug 2019 02:29:42 -0700 Subject: [PATCH] Fix missing rotateZ to useAnimatedDriver Whitelist (#25938) Summary: Added missing property to whitelist ## Changelog [General] [Fixed] - Fixed rotateZ native animation Pull Request resolved: https://github.com/facebook/react-native/pull/25938 Differential Revision: D16645798 Pulled By: cpojer fbshipit-source-id: ef74d7230fa80068dcceaaff841af27365df92e9 --- Libraries/Animated/src/NativeAnimatedHelper.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/Animated/src/NativeAnimatedHelper.js b/Libraries/Animated/src/NativeAnimatedHelper.js index 1cff92883fd..4a32be5492d 100644 --- a/Libraries/Animated/src/NativeAnimatedHelper.js +++ b/Libraries/Animated/src/NativeAnimatedHelper.js @@ -190,6 +190,7 @@ const TRANSFORM_WHITELIST = { rotate: true, rotateX: true, rotateY: true, + rotateZ: true, perspective: true, };