├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ ├── react.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── ledoutong │ │ │ └── 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 └── settings.gradle ├── app ├── checkin.js ├── component │ ├── landingGuide.js │ ├── landingSwiper.js │ ├── login.js │ └── tabBar.js ├── contact.js ├── me.js ├── message.js └── messageDetail.js ├── data └── users_data.json ├── index.android.js ├── index.ios.js ├── ios ├── Ledoutong.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Ledoutong.xcscheme ├── Ledoutong │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 120-1.png │ │ │ ├── 120.png │ │ │ ├── 180.png │ │ │ ├── 58.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── LedoutongTests │ ├── Info.plist │ └── LedoutongTests.m └── package.json /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/react.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/ledoutong/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/java/com/ledoutong/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/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/chenbin92/React-native-example/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/chenbin92/React-native-example/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/chenbin92/React-native-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app/checkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/checkin.js -------------------------------------------------------------------------------- /app/component/landingGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/component/landingGuide.js -------------------------------------------------------------------------------- /app/component/landingSwiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/component/landingSwiper.js -------------------------------------------------------------------------------- /app/component/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/component/login.js -------------------------------------------------------------------------------- /app/component/tabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/component/tabBar.js -------------------------------------------------------------------------------- /app/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/contact.js -------------------------------------------------------------------------------- /app/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/me.js -------------------------------------------------------------------------------- /app/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/message.js -------------------------------------------------------------------------------- /app/messageDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/app/messageDetail.js -------------------------------------------------------------------------------- /data/users_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/data/users_data.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/Ledoutong.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Ledoutong.xcodeproj/xcshareddata/xcschemes/Ledoutong.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong.xcodeproj/xcshareddata/xcschemes/Ledoutong.xcscheme -------------------------------------------------------------------------------- /ios/Ledoutong/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/AppDelegate.h -------------------------------------------------------------------------------- /ios/Ledoutong/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/AppDelegate.m -------------------------------------------------------------------------------- /ios/Ledoutong/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/Ledoutong/Images.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Images.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /ios/Ledoutong/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/Ledoutong/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/Ledoutong/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/Ledoutong/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/Ledoutong/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/Ledoutong/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Ledoutong/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Ledoutong/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/Info.plist -------------------------------------------------------------------------------- /ios/Ledoutong/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/Ledoutong/main.m -------------------------------------------------------------------------------- /ios/LedoutongTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/LedoutongTests/Info.plist -------------------------------------------------------------------------------- /ios/LedoutongTests/LedoutongTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/ios/LedoutongTests/LedoutongTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenbin92/React-native-example/HEAD/package.json --------------------------------------------------------------------------------