├── README.md ├── assets └── images │ ├── async-bounce.gif │ ├── async.jpg │ ├── delayed-bounce.gif │ ├── delayed.png │ ├── oneByOne-bounce.gif │ └── one_by_one.jpg ├── example ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── app.json ├── babel.config.js ├── index.js ├── metro.config.js ├── package.json └── src │ ├── Async.js │ ├── Delayed.js │ ├── OneByOne.js │ └── path │ └── Paths.js ├── index.js ├── package.json └── src ├── components ├── AnimatePath.js ├── AnimateSVG.js └── AnimateSVGPath.js └── helpers ├── AnimatedEasing.js ├── AnimatedListener.js ├── AnimatedSVG.js ├── AnimatedSVGBrush.js ├── AnimatedSVGPropString.js ├── AnimatedSVGState.js ├── AnimatedSVGTransform.js └── Matrix2D.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/async-bounce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/assets/images/async-bounce.gif -------------------------------------------------------------------------------- /assets/images/async.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/assets/images/async.jpg -------------------------------------------------------------------------------- /assets/images/delayed-bounce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/assets/images/delayed-bounce.gif -------------------------------------------------------------------------------- /assets/images/delayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/assets/images/delayed.png -------------------------------------------------------------------------------- /assets/images/oneByOne-bounce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/assets/images/oneByOne-bounce.gif -------------------------------------------------------------------------------- /assets/images/one_by_one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/assets/images/one_by_one.jpg -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/index.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/Async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/src/Async.js -------------------------------------------------------------------------------- /example/src/Delayed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/src/Delayed.js -------------------------------------------------------------------------------- /example/src/OneByOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/src/OneByOne.js -------------------------------------------------------------------------------- /example/src/path/Paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/example/src/path/Paths.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/package.json -------------------------------------------------------------------------------- /src/components/AnimatePath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/components/AnimatePath.js -------------------------------------------------------------------------------- /src/components/AnimateSVG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/components/AnimateSVG.js -------------------------------------------------------------------------------- /src/components/AnimateSVGPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/components/AnimateSVGPath.js -------------------------------------------------------------------------------- /src/helpers/AnimatedEasing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/helpers/AnimatedEasing.js -------------------------------------------------------------------------------- /src/helpers/AnimatedListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/helpers/AnimatedListener.js -------------------------------------------------------------------------------- /src/helpers/AnimatedSVG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/helpers/AnimatedSVG.js -------------------------------------------------------------------------------- /src/helpers/AnimatedSVGBrush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/helpers/AnimatedSVGBrush.js -------------------------------------------------------------------------------- /src/helpers/AnimatedSVGPropString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/helpers/AnimatedSVGPropString.js -------------------------------------------------------------------------------- /src/helpers/AnimatedSVGState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/helpers/AnimatedSVGState.js -------------------------------------------------------------------------------- /src/helpers/AnimatedSVGTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/helpers/AnimatedSVGTransform.js -------------------------------------------------------------------------------- /src/helpers/Matrix2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hestabit/react-native-svg-animate/HEAD/src/helpers/Matrix2D.js --------------------------------------------------------------------------------