CSS Animation and Transformation in

Just wondering if we can use CSS animation and native-native conversion? those.

 <Image style={animateImage} / >

StyleSheet.create({

 animateImage {
   width: 100px;
   height: 100px;
   background: red;
   transition: width 3s;
   transition-delay: 1s;
 }

});

      

+3


source to share


1 answer


No, you cannot. The intrinsic properties Stylesheet

for responsiveness are rather limited compared to vanilla CSS.



For animation, see Animated API .

+2


source







All Articles