├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── DetailScreen.js ├── DoubanMovieApp.js ├── DrawerLayout.js ├── HomeScreen.android.js ├── HomeScreen.ios.js ├── HotMovieList.android.js ├── HotMovieList.ios.js ├── HotMovies.json ├── LICENSE ├── MovieCell.js ├── README.md ├── SearchBar.js ├── SearchResultScreen.js ├── SearchScreen.js ├── SplashScreen.js ├── SwipeRefreshLayout.js ├── TitleBarForDetail.js ├── TitleBarForHome.js ├── android ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── vcs.xml │ └── workspace.xml ├── DoubanMovie.iml ├── app │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── app.iml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── proguard-rules.pro │ ├── react.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── doubanmovie │ │ │ ├── CustomReactPackage.java │ │ │ ├── MainActivity.java │ │ │ └── swiperefresh │ │ │ ├── ReactSwipeRefreshLayout.java │ │ │ ├── ReactSwipeRefreshLayoutManager.java │ │ │ └── event │ │ │ └── RefreshEvent.java │ │ └── res │ │ ├── drawable-xhdpi │ │ ├── drawer_invitation.png │ │ ├── drawer_rule.png │ │ ├── drawer_suggest.png │ │ ├── drawer_works.png │ │ └── user_logo.png │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_menu_white.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── images ├── ic_back.png ├── ic_menu_white_48dp.png └── ic_search_white_48dp.png ├── index.android.js ├── index.ios.js ├── ios ├── DoubanMovie.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── fengjun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── DoubanMovie.xcscheme │ └── xcuserdata │ │ └── fengjun.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── DoubanMovie │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── DoubanMovieTests │ ├── DoubanMovieTests.m │ └── Info.plist └── main.jsbundle ├── package.json └── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png └── 7.png /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /DetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/DetailScreen.js -------------------------------------------------------------------------------- /DoubanMovieApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/DoubanMovieApp.js -------------------------------------------------------------------------------- /DrawerLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/DrawerLayout.js -------------------------------------------------------------------------------- /HomeScreen.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/HomeScreen.android.js -------------------------------------------------------------------------------- /HomeScreen.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/HomeScreen.ios.js -------------------------------------------------------------------------------- /HotMovieList.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/HotMovieList.android.js -------------------------------------------------------------------------------- /HotMovieList.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/HotMovieList.ios.js -------------------------------------------------------------------------------- /HotMovies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/HotMovies.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/LICENSE -------------------------------------------------------------------------------- /MovieCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/MovieCell.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/README.md -------------------------------------------------------------------------------- /SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/SearchBar.js -------------------------------------------------------------------------------- /SearchResultScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/SearchResultScreen.js -------------------------------------------------------------------------------- /SearchScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/SearchScreen.js -------------------------------------------------------------------------------- /SplashScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/SplashScreen.js -------------------------------------------------------------------------------- /SwipeRefreshLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/SwipeRefreshLayout.js -------------------------------------------------------------------------------- /TitleBarForDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/TitleBarForDetail.js -------------------------------------------------------------------------------- /TitleBarForHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/TitleBarForHome.js -------------------------------------------------------------------------------- /android/.idea/.name: -------------------------------------------------------------------------------- 1 | android -------------------------------------------------------------------------------- /android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /android/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/.idea/encodings.xml -------------------------------------------------------------------------------- /android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/.idea/gradle.xml -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/.idea/vcs.xml -------------------------------------------------------------------------------- /android/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/.idea/workspace.xml -------------------------------------------------------------------------------- /android/DoubanMovie.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/DoubanMovie.iml -------------------------------------------------------------------------------- /android/app/.idea/.name: -------------------------------------------------------------------------------- 1 | app -------------------------------------------------------------------------------- /android/app/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/.idea/compiler.xml -------------------------------------------------------------------------------- /android/app/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /android/app/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/.idea/gradle.xml -------------------------------------------------------------------------------- /android/app/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/.idea/misc.xml -------------------------------------------------------------------------------- /android/app/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/.idea/modules.xml -------------------------------------------------------------------------------- /android/app/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/app/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/.idea/vcs.xml -------------------------------------------------------------------------------- /android/app/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/.idea/workspace.xml -------------------------------------------------------------------------------- /android/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/app.iml -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/gradle.properties -------------------------------------------------------------------------------- /android/app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/app/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/gradlew -------------------------------------------------------------------------------- /android/app/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/gradlew.bat -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/react.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/doubanmovie/CustomReactPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/java/com/doubanmovie/CustomReactPackage.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/doubanmovie/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/java/com/doubanmovie/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/doubanmovie/swiperefresh/ReactSwipeRefreshLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/java/com/doubanmovie/swiperefresh/ReactSwipeRefreshLayout.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/doubanmovie/swiperefresh/ReactSwipeRefreshLayoutManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/java/com/doubanmovie/swiperefresh/ReactSwipeRefreshLayoutManager.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/doubanmovie/swiperefresh/event/RefreshEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/java/com/doubanmovie/swiperefresh/event/RefreshEvent.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/drawer_invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/drawable-xhdpi/drawer_invitation.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/drawer_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/drawable-xhdpi/drawer_rule.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/drawer_suggest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/drawable-xhdpi/drawer_suggest.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/drawer_works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/drawable-xhdpi/drawer_works.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/user_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/drawable-xhdpi/user_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-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/fengjundev/DoubanMovie-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/fengjundev/DoubanMovie-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/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_menu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_menu_white.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'DoubanMovie' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /images/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/images/ic_back.png -------------------------------------------------------------------------------- /images/ic_menu_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/images/ic_menu_white_48dp.png -------------------------------------------------------------------------------- /images/ic_search_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/images/ic_search_white_48dp.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/DoubanMovie.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/DoubanMovie.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/DoubanMovie.xcodeproj/project.xcworkspace/xcuserdata/fengjun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie.xcodeproj/project.xcworkspace/xcuserdata/fengjun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/DoubanMovie.xcodeproj/xcshareddata/xcschemes/DoubanMovie.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie.xcodeproj/xcshareddata/xcschemes/DoubanMovie.xcscheme -------------------------------------------------------------------------------- /ios/DoubanMovie.xcodeproj/xcuserdata/fengjun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie.xcodeproj/xcuserdata/fengjun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ios/DoubanMovie/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie/AppDelegate.h -------------------------------------------------------------------------------- /ios/DoubanMovie/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie/AppDelegate.m -------------------------------------------------------------------------------- /ios/DoubanMovie/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/DoubanMovie/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/DoubanMovie/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie/Info.plist -------------------------------------------------------------------------------- /ios/DoubanMovie/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovie/main.m -------------------------------------------------------------------------------- /ios/DoubanMovieTests/DoubanMovieTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovieTests/DoubanMovieTests.m -------------------------------------------------------------------------------- /ios/DoubanMovieTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/DoubanMovieTests/Info.plist -------------------------------------------------------------------------------- /ios/main.jsbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/ios/main.jsbundle -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengjundev/DoubanMovie-React-Native/HEAD/screenshot/7.png --------------------------------------------------------------------------------