├── .buckconfig ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── flextest │ │ │ └── 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 ├── components └── LoginScreen.js ├── index.android.js ├── index.ios.js ├── ios ├── FlexTest.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── FlexTest.xcscheme ├── FlexTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── FlexTestTests │ ├── FlexTestTests.m │ └── Info.plist └── package.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/flextest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/app/src/main/java/com/flextest/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/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/yonibot/flexbox-manual-for-react-native/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/yonibot/flexbox-manual-for-react-native/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/yonibot/flexbox-manual-for-react-native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'FlexTest' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /components/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/components/LoginScreen.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/FlexTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/FlexTest.xcodeproj/xcshareddata/xcschemes/FlexTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTest.xcodeproj/xcshareddata/xcschemes/FlexTest.xcscheme -------------------------------------------------------------------------------- /ios/FlexTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTest/AppDelegate.h -------------------------------------------------------------------------------- /ios/FlexTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTest/AppDelegate.m -------------------------------------------------------------------------------- /ios/FlexTest/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTest/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/FlexTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/FlexTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTest/Info.plist -------------------------------------------------------------------------------- /ios/FlexTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTest/main.m -------------------------------------------------------------------------------- /ios/FlexTestTests/FlexTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTestTests/FlexTestTests.m -------------------------------------------------------------------------------- /ios/FlexTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/ios/FlexTestTests/Info.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yonibot/flexbox-manual-for-react-native/HEAD/package.json --------------------------------------------------------------------------------