├── .gitignore ├── HTML ├── begin │ ├── images │ │ ├── icon-information.png │ │ ├── icon-negative.png │ │ ├── icon-positive.png │ │ ├── villainr-brand.svg │ │ └── villainr-profile.svg │ ├── index.html │ ├── review.html │ └── styles │ │ └── app.css └── end │ ├── images │ ├── icon-information.png │ ├── icon-negative.png │ ├── icon-positive.png │ ├── villainr-brand.svg │ └── villainr-profile.svg │ ├── index.html │ ├── review.html │ └── styles │ └── app.css ├── Mobile ├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── villainr │ │ │ │ ├── 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 ├── app │ ├── actions │ │ └── index.js │ ├── app.js │ ├── components │ │ ├── login │ │ │ ├── LoginForm.js │ │ │ ├── LoginScreen.js │ │ │ └── img │ │ │ │ ├── villainr-brand.png │ │ │ │ ├── villainr-brand@2x.png │ │ │ │ └── villainr-brand@3x.png │ │ └── profile │ │ │ ├── ProfileCard.js │ │ │ ├── ProfileControls.js │ │ │ ├── ProfileScreen.js │ │ │ └── img │ │ │ ├── icon-information.png │ │ │ ├── icon-negative.png │ │ │ ├── icon-positive.png │ │ │ ├── villainr-profile.png │ │ │ ├── villainr-profile@2x.png │ │ │ └── villainr-profile@3x.png │ ├── constants │ │ └── action-types.js │ ├── reducers │ │ ├── auth-reducer.js │ │ └── index.js │ └── root.js ├── index.android.js ├── index.ios.js ├── ios │ ├── Villainr.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Villainr.xcscheme │ ├── Villainr │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── VillainrTests │ │ ├── Info.plist │ │ └── VillainrTests.m └── package.json └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/.gitignore -------------------------------------------------------------------------------- /HTML/begin/images/icon-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/begin/images/icon-information.png -------------------------------------------------------------------------------- /HTML/begin/images/icon-negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/begin/images/icon-negative.png -------------------------------------------------------------------------------- /HTML/begin/images/icon-positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/begin/images/icon-positive.png -------------------------------------------------------------------------------- /HTML/begin/images/villainr-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/begin/images/villainr-brand.svg -------------------------------------------------------------------------------- /HTML/begin/images/villainr-profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/begin/images/villainr-profile.svg -------------------------------------------------------------------------------- /HTML/begin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/begin/index.html -------------------------------------------------------------------------------- /HTML/begin/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/begin/review.html -------------------------------------------------------------------------------- /HTML/begin/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/begin/styles/app.css -------------------------------------------------------------------------------- /HTML/end/images/icon-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/end/images/icon-information.png -------------------------------------------------------------------------------- /HTML/end/images/icon-negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/end/images/icon-negative.png -------------------------------------------------------------------------------- /HTML/end/images/icon-positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/end/images/icon-positive.png -------------------------------------------------------------------------------- /HTML/end/images/villainr-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/end/images/villainr-brand.svg -------------------------------------------------------------------------------- /HTML/end/images/villainr-profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/end/images/villainr-profile.svg -------------------------------------------------------------------------------- /HTML/end/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/end/index.html -------------------------------------------------------------------------------- /HTML/end/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/end/review.html -------------------------------------------------------------------------------- /HTML/end/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/HTML/end/styles/app.css -------------------------------------------------------------------------------- /Mobile/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/.buckconfig -------------------------------------------------------------------------------- /Mobile/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/.flowconfig -------------------------------------------------------------------------------- /Mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/.gitignore -------------------------------------------------------------------------------- /Mobile/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Mobile/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/BUCK -------------------------------------------------------------------------------- /Mobile/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/build.gradle -------------------------------------------------------------------------------- /Mobile/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Mobile/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Mobile/android/app/src/main/java/com/villainr/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/java/com/villainr/MainActivity.java -------------------------------------------------------------------------------- /Mobile/android/app/src/main/java/com/villainr/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/java/com/villainr/MainApplication.java -------------------------------------------------------------------------------- /Mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Mobile/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Mobile/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Mobile/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/build.gradle -------------------------------------------------------------------------------- /Mobile/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/gradle.properties -------------------------------------------------------------------------------- /Mobile/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Mobile/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Mobile/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/gradlew -------------------------------------------------------------------------------- /Mobile/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/gradlew.bat -------------------------------------------------------------------------------- /Mobile/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/keystores/BUCK -------------------------------------------------------------------------------- /Mobile/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Mobile/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Villainr' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /Mobile/app/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/actions/index.js -------------------------------------------------------------------------------- /Mobile/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/app.js -------------------------------------------------------------------------------- /Mobile/app/components/login/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/login/LoginForm.js -------------------------------------------------------------------------------- /Mobile/app/components/login/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/login/LoginScreen.js -------------------------------------------------------------------------------- /Mobile/app/components/login/img/villainr-brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/login/img/villainr-brand.png -------------------------------------------------------------------------------- /Mobile/app/components/login/img/villainr-brand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/login/img/villainr-brand@2x.png -------------------------------------------------------------------------------- /Mobile/app/components/login/img/villainr-brand@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/login/img/villainr-brand@3x.png -------------------------------------------------------------------------------- /Mobile/app/components/profile/ProfileCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/ProfileCard.js -------------------------------------------------------------------------------- /Mobile/app/components/profile/ProfileControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/ProfileControls.js -------------------------------------------------------------------------------- /Mobile/app/components/profile/ProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/ProfileScreen.js -------------------------------------------------------------------------------- /Mobile/app/components/profile/img/icon-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/img/icon-information.png -------------------------------------------------------------------------------- /Mobile/app/components/profile/img/icon-negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/img/icon-negative.png -------------------------------------------------------------------------------- /Mobile/app/components/profile/img/icon-positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/img/icon-positive.png -------------------------------------------------------------------------------- /Mobile/app/components/profile/img/villainr-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/img/villainr-profile.png -------------------------------------------------------------------------------- /Mobile/app/components/profile/img/villainr-profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/img/villainr-profile@2x.png -------------------------------------------------------------------------------- /Mobile/app/components/profile/img/villainr-profile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/components/profile/img/villainr-profile@3x.png -------------------------------------------------------------------------------- /Mobile/app/constants/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/constants/action-types.js -------------------------------------------------------------------------------- /Mobile/app/reducers/auth-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/reducers/auth-reducer.js -------------------------------------------------------------------------------- /Mobile/app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/reducers/index.js -------------------------------------------------------------------------------- /Mobile/app/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/app/root.js -------------------------------------------------------------------------------- /Mobile/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/index.android.js -------------------------------------------------------------------------------- /Mobile/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/index.ios.js -------------------------------------------------------------------------------- /Mobile/ios/Villainr.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/Villainr.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mobile/ios/Villainr.xcodeproj/xcshareddata/xcschemes/Villainr.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/Villainr.xcodeproj/xcshareddata/xcschemes/Villainr.xcscheme -------------------------------------------------------------------------------- /Mobile/ios/Villainr/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/Villainr/AppDelegate.h -------------------------------------------------------------------------------- /Mobile/ios/Villainr/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/Villainr/AppDelegate.m -------------------------------------------------------------------------------- /Mobile/ios/Villainr/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/Villainr/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Mobile/ios/Villainr/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/Villainr/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Mobile/ios/Villainr/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/Villainr/Info.plist -------------------------------------------------------------------------------- /Mobile/ios/Villainr/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/Villainr/main.m -------------------------------------------------------------------------------- /Mobile/ios/VillainrTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/VillainrTests/Info.plist -------------------------------------------------------------------------------- /Mobile/ios/VillainrTests/VillainrTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/ios/VillainrTests/VillainrTests.m -------------------------------------------------------------------------------- /Mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/Mobile/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeschool/WatchUsBuild-FlexboxReactNativeUI/HEAD/README.md --------------------------------------------------------------------------------