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