├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── README.md ├── Screen Shot 2016-10-11 at 11.00.39 PM.png ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── animationsandbox │ │ │ └── MainActivity.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── index.ios.js ├── ios ├── AnimationSandBox.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── AnimationSandBox.xcscheme ├── AnimationSandBox │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── AnimationSandBoxTests │ ├── AnimationSandBoxTests.m │ └── Info.plist ├── js └── components │ ├── AnimationList.js │ ├── Donut.js │ ├── DragSquare.js │ ├── Fuego.js │ ├── Stagger.js │ ├── TimingFunctions.js │ ├── buttons │ ├── ShinyButton.js │ └── SubmitButton.js │ ├── fuegologo-1.png │ ├── fuegologo.png │ ├── fuegologo.psd │ └── shared │ ├── Checkmark.js │ └── Flame.js └── package.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/README.md -------------------------------------------------------------------------------- /Screen Shot 2016-10-11 at 11.00.39 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/Screen Shot 2016-10-11 at 11.00.39 PM.png -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/animationsandbox/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/src/main/java/com/animationsandbox/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AnimationSandBox' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/AnimationSandBox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/AnimationSandBox.xcodeproj/xcshareddata/xcschemes/AnimationSandBox.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBox.xcodeproj/xcshareddata/xcschemes/AnimationSandBox.xcscheme -------------------------------------------------------------------------------- /ios/AnimationSandBox/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBox/AppDelegate.h -------------------------------------------------------------------------------- /ios/AnimationSandBox/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBox/AppDelegate.m -------------------------------------------------------------------------------- /ios/AnimationSandBox/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBox/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/AnimationSandBox/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBox/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/AnimationSandBox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBox/Info.plist -------------------------------------------------------------------------------- /ios/AnimationSandBox/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBox/main.m -------------------------------------------------------------------------------- /ios/AnimationSandBoxTests/AnimationSandBoxTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBoxTests/AnimationSandBoxTests.m -------------------------------------------------------------------------------- /ios/AnimationSandBoxTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/ios/AnimationSandBoxTests/Info.plist -------------------------------------------------------------------------------- /js/components/AnimationList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/AnimationList.js -------------------------------------------------------------------------------- /js/components/Donut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/Donut.js -------------------------------------------------------------------------------- /js/components/DragSquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/DragSquare.js -------------------------------------------------------------------------------- /js/components/Fuego.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/Fuego.js -------------------------------------------------------------------------------- /js/components/Stagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/Stagger.js -------------------------------------------------------------------------------- /js/components/TimingFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/TimingFunctions.js -------------------------------------------------------------------------------- /js/components/buttons/ShinyButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/buttons/ShinyButton.js -------------------------------------------------------------------------------- /js/components/buttons/SubmitButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/buttons/SubmitButton.js -------------------------------------------------------------------------------- /js/components/fuegologo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/fuegologo-1.png -------------------------------------------------------------------------------- /js/components/fuegologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/fuegologo.png -------------------------------------------------------------------------------- /js/components/fuegologo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/fuegologo.psd -------------------------------------------------------------------------------- /js/components/shared/Checkmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/shared/Checkmark.js -------------------------------------------------------------------------------- /js/components/shared/Flame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/js/components/shared/Flame.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapitanRedBeard/react-native-animation-showcase/HEAD/package.json --------------------------------------------------------------------------------