Skip to content

Instantly share code, notes, and snippets.

@reime005
Created December 10, 2020 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reime005/7228c88cfe4d3baffa7024d2de4c8e38 to your computer and use it in GitHub Desktop.
Save reime005/7228c88cfe4d3baffa7024d2de4c8e38 to your computer and use it in GitHub Desktop.
import Animated from 'react-native-reanimated';
import Svg, { Circle as _Circle } from 'react-native-svg';
const Circle = Animated.createAnimatedComponent(_Circle);
render() {
return(
<Svg>
<Circle cy="40" fill="green" animatedProps={firstProps} />
</Svg>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment