Skip to content

Instantly share code, notes, and snippets.

@gajjardarshithasmukhbhai
Last active November 15, 2019 11:48
Show Gist options
  • Save gajjardarshithasmukhbhai/807c5defff15062e5db1b852e48fc5f7 to your computer and use it in GitHub Desktop.
Save gajjardarshithasmukhbhai/807c5defff15062e5db1b852e48fc5f7 to your computer and use it in GitHub Desktop.
How to Basic Animation in React-Native icons and other components

Animation in React Native

step:1

  • first import the animation libraray
npm install react-native-animatable

step:2

Import that library

step:3

import * as Animate from 'react-native-animatable';

Example

class Darshit extends React.Component{
  render(){
    return(
      <Animate.View animation="rotate" iterationCount="infinite">
        <Text>Hello Gajjar Darshit</Text>
      </Animate.View>
    )
   }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment