├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── rnsnapclone │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.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 ├── config.js ├── index.android.js ├── index.ios.js ├── ios ├── rnsnapClone.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── rnsnapClone.xcscheme ├── rnsnapClone │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── Icon-Small-60@3x.png │ ├── Info.plist │ └── main.m └── rnsnapCloneTests │ ├── Info.plist │ └── rnsnapCloneTests.m ├── models ├── Snap.js └── User.js ├── package.json ├── screenshots ├── login-screen.png ├── recipient-choosing.png ├── snap-capture.png ├── snap-viewing.png └── snaps-list-view.png └── src ├── components ├── App.js ├── Capture │ └── Capture.js ├── Connection │ └── Connection.js ├── List │ ├── List.js │ ├── Show │ │ └── Show.js │ └── Single │ │ └── Single.js └── Send │ ├── Send.js │ └── Single │ └── Single.js └── styles └── theme.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnsnapclone/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/java/com/rnsnapclone/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rnsnapclone/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/java/com/rnsnapclone/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/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/Michaelvilleneuve/react-native-snapchat-clone/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/Michaelvilleneuve/react-native-snapchat-clone/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/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/config.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/rnsnapClone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/rnsnapClone.xcodeproj/xcshareddata/xcschemes/rnsnapClone.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone.xcodeproj/xcshareddata/xcschemes/rnsnapClone.xcscheme -------------------------------------------------------------------------------- /ios/rnsnapClone/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone/AppDelegate.h -------------------------------------------------------------------------------- /ios/rnsnapClone/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone/AppDelegate.m -------------------------------------------------------------------------------- /ios/rnsnapClone/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/rnsnapClone/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/rnsnapClone/Images.xcassets/AppIcon.appiconset/Icon-Small-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone/Images.xcassets/AppIcon.appiconset/Icon-Small-60@3x.png -------------------------------------------------------------------------------- /ios/rnsnapClone/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone/Info.plist -------------------------------------------------------------------------------- /ios/rnsnapClone/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapClone/main.m -------------------------------------------------------------------------------- /ios/rnsnapCloneTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapCloneTests/Info.plist -------------------------------------------------------------------------------- /ios/rnsnapCloneTests/rnsnapCloneTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/ios/rnsnapCloneTests/rnsnapCloneTests.m -------------------------------------------------------------------------------- /models/Snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/models/Snap.js -------------------------------------------------------------------------------- /models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/models/User.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/login-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/screenshots/login-screen.png -------------------------------------------------------------------------------- /screenshots/recipient-choosing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/screenshots/recipient-choosing.png -------------------------------------------------------------------------------- /screenshots/snap-capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/screenshots/snap-capture.png -------------------------------------------------------------------------------- /screenshots/snap-viewing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/screenshots/snap-viewing.png -------------------------------------------------------------------------------- /screenshots/snaps-list-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/screenshots/snaps-list-view.png -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/Capture/Capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/components/Capture/Capture.js -------------------------------------------------------------------------------- /src/components/Connection/Connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/components/Connection/Connection.js -------------------------------------------------------------------------------- /src/components/List/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/components/List/List.js -------------------------------------------------------------------------------- /src/components/List/Show/Show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/components/List/Show/Show.js -------------------------------------------------------------------------------- /src/components/List/Single/Single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/components/List/Single/Single.js -------------------------------------------------------------------------------- /src/components/Send/Send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/components/Send/Send.js -------------------------------------------------------------------------------- /src/components/Send/Single/Single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/components/Send/Single/Single.js -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michaelvilleneuve/react-native-snapchat-clone/HEAD/src/styles/theme.js --------------------------------------------------------------------------------