├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativelogoanimation │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativelogoanimation │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.tsx ├── ios │ ├── File.swift │ ├── LogoAnimationExample-Bridging-Header.h │ ├── LogoAnimationExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── LogoAnimationExample.xcscheme │ ├── LogoAnimationExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── LogoAnimationExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package.json ├── src │ └── App.tsx └── yarn.lock ├── package.json ├── preview.gif ├── scripts └── bootstrap.js ├── src ├── __tests__ │ └── index.test.tsx ├── components │ ├── AnimatedLogo.tsx │ ├── AnimatedStroke.tsx │ └── PlaceholderStroke.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/reactnativelogoanimation/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/debug/java/com/example/reactnativelogoanimation/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativelogoanimation/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/java/com/example/reactnativelogoanimation/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativelogoanimation/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/java/com/example/reactnativelogoanimation/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample.xcodeproj/xcshareddata/xcschemes/LogoAnimationExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample.xcodeproj/xcshareddata/xcschemes/LogoAnimationExample.xcscheme -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample/Info.plist -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/LogoAnimationExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/LogoAnimationExample/main.m -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/preview.gif -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/components/AnimatedLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/src/components/AnimatedLogo.tsx -------------------------------------------------------------------------------- /src/components/AnimatedStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/src/components/AnimatedStroke.tsx -------------------------------------------------------------------------------- /src/components/PlaceholderStroke.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/src/components/PlaceholderStroke.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anastely/react-native-logo-animation/HEAD/yarn.lock --------------------------------------------------------------------------------