From ccb4e677563b22d5e9fe1c417dd9dced025a5308 Mon Sep 17 00:00:00 2001 From: Janic Duplessis Date: Fri, 14 Jul 2017 10:18:23 -0700 Subject: [PATCH] Blog - Background color is not supported by the native driver Summary: This was a lie, background color is not supported (yet). Sorry for the false hopes :) Fixes #14178 Closes https://github.com/facebook/react-native/pull/15013 Differential Revision: D5424676 Pulled By: hramos fbshipit-source-id: ea592bf633f1632c931a9f18fe2fa9ebad6136be --- blog/2017-02-14-using-native-driver-for-animated.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/2017-02-14-using-native-driver-for-animated.md b/blog/2017-02-14-using-native-driver-for-animated.md index 1624243ee..9c577f809 100644 --- a/blog/2017-02-14-using-native-driver-for-animated.md +++ b/blog/2017-02-14-using-native-driver-for-animated.md @@ -147,7 +147,7 @@ After: ## Caveats -Not everything you can do with Animated is currently supported in Native Animated. The main limitation is that you can only animate non-layout properties, things like `transform`, `opacity` and `backgroundColor` will work but flexbox and position properties won't. Another one is with `Animated.event`, it will only work with direct events and not bubbling events. This means it does not work with `PanResponder` but does work with things like `ScrollView#onScroll`. +Not everything you can do with Animated is currently supported in Native Animated. The main limitation is that you can only animate non-layout properties, things like `transform` and `opacity` will work but flexbox and position properties won't. Another one is with `Animated.event`, it will only work with direct events and not bubbling events. This means it does not work with `PanResponder` but does work with things like `ScrollView#onScroll`. Native Animated has also been part of React Native for quite a while but has never been documented because it was considered experimental. Because of that make sure you are using a recent version (0.40+) of React Native if you want to use this feature.