CSS animation and transformation in react-native
css, react-native
Solution
No, you cannot. React Native's `Stylesheet` properties are pretty limited when compared with vanilla CSS.
For animations look into the Animated API.
Problem
Just wondering if we can use CSS animation and transformation in react-native? i.e. ``` <Image style={animateImage} / > StyleSheet.create({ animateImage { width: 100px; height: 100px; background: red; transition: width 3s; transition-delay: 1s; } }); ```