├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── Main.js ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ ├── iconfont.ttf │ │ │ └── rubicon-icon-font.ttf │ │ └── index.android.bundle │ │ ├── java │ │ └── com │ │ │ └── cartoon │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-mdpi │ │ ├── node_modules_reactnative_libraries_newappscreen_components_logo.png │ │ ├── node_modules_reactnativerouterflux_images_back_chevron.png │ │ ├── node_modules_reactnativerouterflux_images_menu_burger.png │ │ ├── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── node_modules_reactnavigationstack_dist_views_assets_backiconmask.png │ │ ├── src_components_rnmovie_images_.png │ │ ├── src_components_rnmovie_images_icon_half_select.png │ │ ├── src_components_rnmovie_images_icon_selected.png │ │ ├── src_components_rnmovie_images_icon_unselect.png │ │ ├── src_images_home_.png │ │ ├── src_images_home_1.png │ │ ├── src_images_home_2.png │ │ ├── src_images_home_icone1.png │ │ ├── src_images_home_icone3.png │ │ ├── src_images_screen_guide1.png │ │ ├── src_images_screen_guide2.png │ │ ├── src_images_screen_guide3.png │ │ └── src_images_screen_guide4.png │ │ ├── drawable-xhdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-xxhdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── drawable-xxxhdpi │ │ └── node_modules_reactnavigationstack_dist_views_assets_backicon.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── app.json │ │ ├── node_modules_nativebase_dist_src_basic_icon_nbicons.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_antdesign.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_entypo.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_evilicons.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_feather.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome5free.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome5free_meta.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_foundation.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_ionicons.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_materialicons.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_octicons.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json │ │ ├── node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_zocial.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_entypo.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_evilicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_feather.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_fontawesome.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_foundation.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_ionicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_materialicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_octicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json │ │ └── node_modules_reactnativevectoricons_glyphmaps_zocial.json │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── img ├── 1.png ├── 10楼.jpg ├── 11楼.jpg ├── 12楼.jpg ├── 13楼.jpg ├── 14楼.jpg ├── 15楼.jpg ├── 1楼.jpg ├── 210_1.png ├── 2楼.jpg ├── 3楼.jpg ├── 4楼.jpg ├── 5楼.jpg ├── 6楼.jpg ├── 7楼.jpg ├── 8楼.jpg ├── 9楼.jpg ├── 修真聊天群.png ├── 修真聊天群1.png ├── 妖怪酒馆.jpg ├── 妖怪酒馆1.png ├── 我才不是恶毒女配.jpg ├── 我才不是恶毒女配1.png ├── 我的王还未成年.jpg ├── 我的王还未成年1.png ├── 抱紧我的小白龙.jpg ├── 抱紧我的小白龙1.png ├── 斗破苍穹.png ├── 斗破苍穹1.png ├── 狩人.png ├── 狩人1.png ├── 猫妖的诱惑.jpg ├── 猫妖的诱惑1.png ├── 西行纪.jpg └── 西行纪1.png ├── index.js ├── ios ├── Podfile ├── cartoon-tvOS │ └── Info.plist ├── cartoon-tvOSTests │ └── Info.plist ├── cartoon.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── cartoon-tvOS.xcscheme │ │ └── cartoon.xcscheme ├── cartoon │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── cartoonTests │ ├── Info.plist │ └── cartoonTests.m ├── metro.config.js ├── mock ├── comicDetail_tab1.json ├── home_comic.json ├── home_comic_books.json ├── home_comic_catalog.json ├── home_comic_comment.json ├── home_comic_image_list.json └── home_comic_overview.json ├── package.json ├── src ├── api │ └── index.js ├── components │ └── RNMovie │ │ ├── KeyValue │ │ ├── KeyValue.js │ │ └── KeyValueChange.js │ │ ├── MovieComment.js │ │ ├── MovieDetail.js │ │ ├── MovieGrid.js │ │ ├── MovieList.js │ │ ├── MoviePhotosList.js │ │ ├── MovieSearch │ │ ├── Stars │ │ │ ├── ActionMovieStars.js │ │ │ ├── CartoonMovieStars.js │ │ │ ├── CrimeMovieStars.js │ │ │ ├── DocumentaryMovieStars.js │ │ │ ├── LoveMovieStars.js │ │ │ ├── TechnologyMovieStars.js │ │ │ ├── WarMovieStars.js │ │ │ └── XiJuMovieStars.js │ │ ├── actionMovie.js │ │ ├── cartoonMovie.js │ │ ├── crimeMovie.js │ │ ├── documentaryMovie.js │ │ ├── loveMovie.js │ │ ├── technologyMovie.js │ │ ├── warMovie.js │ │ └── xijuMovie.js │ │ ├── MovieStarts.js │ │ ├── MovieSwiper.js │ │ ├── MovieTab │ │ ├── MovieListBeimei.js │ │ ├── MovieListNew.js │ │ ├── MovieListTop.js │ │ ├── MovieListkoubei.js │ │ ├── MovieSearch.js │ │ ├── MovieStars.js │ │ └── MvSearchList.js │ │ ├── MvComment │ │ ├── MvComment.js │ │ └── MvDetailStars2.js │ │ ├── MvDetail │ │ ├── MovieDetailSummary.js │ │ ├── MvDetailStars.js │ │ └── MvDetailStars2.js │ │ ├── MvGrid │ │ └── MvGridStars.js │ │ ├── MvSwiper │ │ └── MvSwiperStars.js │ │ ├── images │ │ ├── icon_back.png │ │ ├── icon_half_select.png │ │ ├── icon_selected.png │ │ ├── icon_unselect.png │ │ ├── 动作.png │ │ ├── 动漫.png │ │ ├── 战争.png │ │ ├── 点赞.png │ │ ├── 犯罪.png │ │ ├── 科技.png │ │ ├── 笑脸.png │ │ └── 记录.png │ │ └── img │ │ ├── a1.png │ │ ├── a2.png │ │ ├── a3.png │ │ └── a4.png ├── images │ ├── home │ │ ├── 1.png │ │ ├── lb1.jpg │ │ ├── lb2.jpg │ │ ├── lb3.jpg │ │ ├── menu1.png │ │ ├── menu2.png │ │ ├── menu3.png │ │ ├── menu4.png │ │ ├── menu5.png │ │ ├── menu6.png │ │ ├── xin.png │ │ ├── 下载.png │ │ ├── 今日 (1).png │ │ ├── 今日.png │ │ ├── 催更.jpg │ │ ├── 分享.png │ │ ├── 微笑2.png │ │ ├── 心 (1).png │ │ ├── 心.png │ │ ├── 心心.png │ │ ├── 漫画icone.png │ │ ├── 漫画icone1.png │ │ ├── 漫画icone3.png │ │ ├── 爱心.png │ │ └── 笑脸.png │ ├── loading │ │ ├── loading_1.png │ │ ├── loading_2.png │ │ ├── loading_3.png │ │ └── loading_4.png │ └── screen │ │ ├── guide1.png │ │ ├── guide2.png │ │ ├── guide3.png │ │ └── guide4.png ├── pages │ ├── Book │ │ ├── Book.js │ │ ├── BookChapter │ │ │ └── BookChapter.js │ │ ├── BookContent │ │ │ ├── BookContent.js │ │ │ └── SlideChapter │ │ │ │ └── SlideChapter.js │ │ ├── BookDetail │ │ │ ├── BookComment │ │ │ │ └── BookComment.js │ │ │ ├── BookDetail.js │ │ │ ├── BookHot │ │ │ │ └── BookHot.js │ │ │ └── OtherBook │ │ │ │ └── OtherBook.js │ │ ├── BookSearch │ │ │ ├── BookSearch.js │ │ │ ├── Complete │ │ │ │ └── Complete.js │ │ │ ├── ResultList │ │ │ │ └── ResultList.js │ │ │ ├── SearchHistory │ │ │ │ └── SearchHistory.js │ │ │ ├── SearchHotWord │ │ │ │ └── SearchHotWord.js │ │ │ └── SearchRecommend │ │ │ │ └── SearchRecommend.js │ │ ├── Female │ │ │ └── Female.js │ │ ├── Male │ │ │ ├── Banner │ │ │ │ └── Banner.js │ │ │ ├── Editor │ │ │ │ └── Editor.js │ │ │ ├── GatherNews │ │ │ │ └── GatherNews.js │ │ │ ├── GoodBooks │ │ │ │ └── GoodBooks.js │ │ │ └── Male.js │ │ └── Recommend │ │ │ └── Recommend.js │ ├── Home │ │ ├── Booklists.js │ │ ├── CartoonDetails.js │ │ ├── Home.js │ │ ├── Tabs │ │ │ ├── TabChapter.js │ │ │ ├── TabComment.js │ │ │ └── TabDetail.js │ │ └── comicRead.js │ ├── Loading │ │ └── Loading.js │ ├── Me │ │ ├── Account.js │ │ ├── Home.js │ │ ├── Login.js │ │ ├── Me.js │ │ ├── Password.js │ │ └── Phone.js │ ├── Movie │ │ ├── BaseContant.js │ │ ├── Migrations.js │ │ ├── Movie.js │ │ ├── RealmManager.js │ │ ├── Schemas.js │ │ ├── Theme │ │ │ ├── Theme.js │ │ │ └── Utils.js │ │ └── loading.js │ └── StartScreen.js └── store │ ├── actionCreator.js │ ├── actionType.js │ ├── index.js │ └── reducer.js ├── store ├── Actions.js ├── Reducer.js └── StoreContext.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/App.js -------------------------------------------------------------------------------- /Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/Main.js -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/java/com/cartoon/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/java/com/cartoon/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/cartoon/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/java/com/cartoon/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_newappscreen_components_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_newappscreen_components_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativerouterflux_images_back_chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativerouterflux_images_back_chevron.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativerouterflux_images_menu_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativerouterflux_images_menu_burger.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backiconmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backiconmask.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_components_rnmovie_images_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_components_rnmovie_images_.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_components_rnmovie_images_icon_half_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_components_rnmovie_images_icon_half_select.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_components_rnmovie_images_icon_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_components_rnmovie_images_icon_selected.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_components_rnmovie_images_icon_unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_components_rnmovie_images_icon_unselect.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_home_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_home_.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_home_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_home_1.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_home_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_home_2.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_home_icone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_home_icone1.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_home_icone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_home_icone3.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_screen_guide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_screen_guide1.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_screen_guide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_screen_guide2.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_screen_guide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_screen_guide3.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/src_images_screen_guide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-mdpi/src_images_screen_guide4.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/app.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_dist_src_basic_icon_nbicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_dist_src_basic_icon_nbicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_antdesign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_antdesign.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_entypo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_entypo.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_evilicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_evilicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_feather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_feather.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome5free.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome5free.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome5free_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_fontawesome5free_meta.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_foundation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_foundation.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_ionicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_ionicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_materialicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_materialicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_octicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_octicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_zocial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_nativebase_node_modules_reactnativevectoricons_glyphmaps_zocial.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_entypo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_entypo.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_evilicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_evilicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_feather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_feather.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_fontawesome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_fontawesome.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_foundation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_foundation.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_ionicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_ionicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_octicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_octicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_zocial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_zocial.json -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/babel.config.js -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/1.png -------------------------------------------------------------------------------- /img/10楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/10楼.jpg -------------------------------------------------------------------------------- /img/11楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/11楼.jpg -------------------------------------------------------------------------------- /img/12楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/12楼.jpg -------------------------------------------------------------------------------- /img/13楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/13楼.jpg -------------------------------------------------------------------------------- /img/14楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/14楼.jpg -------------------------------------------------------------------------------- /img/15楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/15楼.jpg -------------------------------------------------------------------------------- /img/1楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/1楼.jpg -------------------------------------------------------------------------------- /img/210_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/210_1.png -------------------------------------------------------------------------------- /img/2楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/2楼.jpg -------------------------------------------------------------------------------- /img/3楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/3楼.jpg -------------------------------------------------------------------------------- /img/4楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/4楼.jpg -------------------------------------------------------------------------------- /img/5楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/5楼.jpg -------------------------------------------------------------------------------- /img/6楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/6楼.jpg -------------------------------------------------------------------------------- /img/7楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/7楼.jpg -------------------------------------------------------------------------------- /img/8楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/8楼.jpg -------------------------------------------------------------------------------- /img/9楼.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/9楼.jpg -------------------------------------------------------------------------------- /img/修真聊天群.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/修真聊天群.png -------------------------------------------------------------------------------- /img/修真聊天群1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/修真聊天群1.png -------------------------------------------------------------------------------- /img/妖怪酒馆.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/妖怪酒馆.jpg -------------------------------------------------------------------------------- /img/妖怪酒馆1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/妖怪酒馆1.png -------------------------------------------------------------------------------- /img/我才不是恶毒女配.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/我才不是恶毒女配.jpg -------------------------------------------------------------------------------- /img/我才不是恶毒女配1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/我才不是恶毒女配1.png -------------------------------------------------------------------------------- /img/我的王还未成年.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/我的王还未成年.jpg -------------------------------------------------------------------------------- /img/我的王还未成年1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/我的王还未成年1.png -------------------------------------------------------------------------------- /img/抱紧我的小白龙.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/抱紧我的小白龙.jpg -------------------------------------------------------------------------------- /img/抱紧我的小白龙1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/抱紧我的小白龙1.png -------------------------------------------------------------------------------- /img/斗破苍穹.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/斗破苍穹.png -------------------------------------------------------------------------------- /img/斗破苍穹1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/斗破苍穹1.png -------------------------------------------------------------------------------- /img/狩人.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/狩人.png -------------------------------------------------------------------------------- /img/狩人1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/狩人1.png -------------------------------------------------------------------------------- /img/猫妖的诱惑.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/猫妖的诱惑.jpg -------------------------------------------------------------------------------- /img/猫妖的诱惑1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/猫妖的诱惑1.png -------------------------------------------------------------------------------- /img/西行纪.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/西行纪.jpg -------------------------------------------------------------------------------- /img/西行纪1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/img/西行纪1.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/cartoon-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/cartoon-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/cartoon.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/cartoon.xcodeproj/xcshareddata/xcschemes/cartoon-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon.xcodeproj/xcshareddata/xcschemes/cartoon-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/cartoon.xcodeproj/xcshareddata/xcschemes/cartoon.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon.xcodeproj/xcshareddata/xcschemes/cartoon.xcscheme -------------------------------------------------------------------------------- /ios/cartoon/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon/AppDelegate.h -------------------------------------------------------------------------------- /ios/cartoon/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon/AppDelegate.m -------------------------------------------------------------------------------- /ios/cartoon/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/cartoon/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/cartoon/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/cartoon/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon/Info.plist -------------------------------------------------------------------------------- /ios/cartoon/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoon/main.m -------------------------------------------------------------------------------- /ios/cartoonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoonTests/Info.plist -------------------------------------------------------------------------------- /ios/cartoonTests/cartoonTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/ios/cartoonTests/cartoonTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/metro.config.js -------------------------------------------------------------------------------- /mock/comicDetail_tab1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/mock/comicDetail_tab1.json -------------------------------------------------------------------------------- /mock/home_comic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/mock/home_comic.json -------------------------------------------------------------------------------- /mock/home_comic_books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/mock/home_comic_books.json -------------------------------------------------------------------------------- /mock/home_comic_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/mock/home_comic_catalog.json -------------------------------------------------------------------------------- /mock/home_comic_comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/mock/home_comic_comment.json -------------------------------------------------------------------------------- /mock/home_comic_image_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/mock/home_comic_image_list.json -------------------------------------------------------------------------------- /mock/home_comic_overview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/mock/home_comic_overview.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/package.json -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/RNMovie/KeyValue/KeyValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/KeyValue/KeyValue.js -------------------------------------------------------------------------------- /src/components/RNMovie/KeyValue/KeyValueChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/KeyValue/KeyValueChange.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieComment.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieDetail.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieGrid.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieList.js -------------------------------------------------------------------------------- /src/components/RNMovie/MoviePhotosList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MoviePhotosList.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/Stars/ActionMovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/Stars/ActionMovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/Stars/CartoonMovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/Stars/CartoonMovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/Stars/CrimeMovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/Stars/CrimeMovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/Stars/DocumentaryMovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/Stars/DocumentaryMovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/Stars/LoveMovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/Stars/LoveMovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/Stars/TechnologyMovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/Stars/TechnologyMovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/Stars/WarMovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/Stars/WarMovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/Stars/XiJuMovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/Stars/XiJuMovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/actionMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/actionMovie.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/cartoonMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/cartoonMovie.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/crimeMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/crimeMovie.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/documentaryMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/documentaryMovie.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/loveMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/loveMovie.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/technologyMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/technologyMovie.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/warMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/warMovie.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSearch/xijuMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSearch/xijuMovie.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieStarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieStarts.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieSwiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieSwiper.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieTab/MovieListBeimei.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieTab/MovieListBeimei.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieTab/MovieListNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieTab/MovieListNew.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieTab/MovieListTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieTab/MovieListTop.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieTab/MovieListkoubei.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieTab/MovieListkoubei.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieTab/MovieSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieTab/MovieSearch.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieTab/MovieStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieTab/MovieStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MovieTab/MvSearchList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MovieTab/MvSearchList.js -------------------------------------------------------------------------------- /src/components/RNMovie/MvComment/MvComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MvComment/MvComment.js -------------------------------------------------------------------------------- /src/components/RNMovie/MvComment/MvDetailStars2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MvComment/MvDetailStars2.js -------------------------------------------------------------------------------- /src/components/RNMovie/MvDetail/MovieDetailSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MvDetail/MovieDetailSummary.js -------------------------------------------------------------------------------- /src/components/RNMovie/MvDetail/MvDetailStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MvDetail/MvDetailStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MvDetail/MvDetailStars2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MvDetail/MvDetailStars2.js -------------------------------------------------------------------------------- /src/components/RNMovie/MvGrid/MvGridStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MvGrid/MvGridStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/MvSwiper/MvSwiperStars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/MvSwiper/MvSwiperStars.js -------------------------------------------------------------------------------- /src/components/RNMovie/images/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/icon_back.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/icon_half_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/icon_half_select.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/icon_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/icon_selected.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/icon_unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/icon_unselect.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/动作.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/动作.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/动漫.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/动漫.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/战争.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/战争.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/点赞.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/点赞.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/犯罪.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/犯罪.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/科技.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/科技.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/笑脸.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/笑脸.png -------------------------------------------------------------------------------- /src/components/RNMovie/images/记录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/images/记录.png -------------------------------------------------------------------------------- /src/components/RNMovie/img/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/img/a1.png -------------------------------------------------------------------------------- /src/components/RNMovie/img/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/img/a2.png -------------------------------------------------------------------------------- /src/components/RNMovie/img/a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/img/a3.png -------------------------------------------------------------------------------- /src/components/RNMovie/img/a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/components/RNMovie/img/a4.png -------------------------------------------------------------------------------- /src/images/home/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/1.png -------------------------------------------------------------------------------- /src/images/home/lb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/lb1.jpg -------------------------------------------------------------------------------- /src/images/home/lb2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/lb2.jpg -------------------------------------------------------------------------------- /src/images/home/lb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/lb3.jpg -------------------------------------------------------------------------------- /src/images/home/menu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/menu1.png -------------------------------------------------------------------------------- /src/images/home/menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/menu2.png -------------------------------------------------------------------------------- /src/images/home/menu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/menu3.png -------------------------------------------------------------------------------- /src/images/home/menu4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/menu4.png -------------------------------------------------------------------------------- /src/images/home/menu5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/menu5.png -------------------------------------------------------------------------------- /src/images/home/menu6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/menu6.png -------------------------------------------------------------------------------- /src/images/home/xin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/xin.png -------------------------------------------------------------------------------- /src/images/home/下载.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/下载.png -------------------------------------------------------------------------------- /src/images/home/今日 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/今日 (1).png -------------------------------------------------------------------------------- /src/images/home/今日.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/今日.png -------------------------------------------------------------------------------- /src/images/home/催更.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/催更.jpg -------------------------------------------------------------------------------- /src/images/home/分享.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/分享.png -------------------------------------------------------------------------------- /src/images/home/微笑2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/微笑2.png -------------------------------------------------------------------------------- /src/images/home/心 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/心 (1).png -------------------------------------------------------------------------------- /src/images/home/心.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/心.png -------------------------------------------------------------------------------- /src/images/home/心心.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/心心.png -------------------------------------------------------------------------------- /src/images/home/漫画icone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/漫画icone.png -------------------------------------------------------------------------------- /src/images/home/漫画icone1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/漫画icone1.png -------------------------------------------------------------------------------- /src/images/home/漫画icone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/漫画icone3.png -------------------------------------------------------------------------------- /src/images/home/爱心.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/爱心.png -------------------------------------------------------------------------------- /src/images/home/笑脸.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/home/笑脸.png -------------------------------------------------------------------------------- /src/images/loading/loading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/loading/loading_1.png -------------------------------------------------------------------------------- /src/images/loading/loading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/loading/loading_2.png -------------------------------------------------------------------------------- /src/images/loading/loading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/loading/loading_3.png -------------------------------------------------------------------------------- /src/images/loading/loading_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/loading/loading_4.png -------------------------------------------------------------------------------- /src/images/screen/guide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/screen/guide1.png -------------------------------------------------------------------------------- /src/images/screen/guide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/screen/guide2.png -------------------------------------------------------------------------------- /src/images/screen/guide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/screen/guide3.png -------------------------------------------------------------------------------- /src/images/screen/guide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/images/screen/guide4.png -------------------------------------------------------------------------------- /src/pages/Book/Book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/Book.js -------------------------------------------------------------------------------- /src/pages/Book/BookChapter/BookChapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookChapter/BookChapter.js -------------------------------------------------------------------------------- /src/pages/Book/BookContent/BookContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookContent/BookContent.js -------------------------------------------------------------------------------- /src/pages/Book/BookContent/SlideChapter/SlideChapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookContent/SlideChapter/SlideChapter.js -------------------------------------------------------------------------------- /src/pages/Book/BookDetail/BookComment/BookComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookDetail/BookComment/BookComment.js -------------------------------------------------------------------------------- /src/pages/Book/BookDetail/BookDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookDetail/BookDetail.js -------------------------------------------------------------------------------- /src/pages/Book/BookDetail/BookHot/BookHot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookDetail/BookHot/BookHot.js -------------------------------------------------------------------------------- /src/pages/Book/BookDetail/OtherBook/OtherBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookDetail/OtherBook/OtherBook.js -------------------------------------------------------------------------------- /src/pages/Book/BookSearch/BookSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookSearch/BookSearch.js -------------------------------------------------------------------------------- /src/pages/Book/BookSearch/Complete/Complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookSearch/Complete/Complete.js -------------------------------------------------------------------------------- /src/pages/Book/BookSearch/ResultList/ResultList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookSearch/ResultList/ResultList.js -------------------------------------------------------------------------------- /src/pages/Book/BookSearch/SearchHistory/SearchHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookSearch/SearchHistory/SearchHistory.js -------------------------------------------------------------------------------- /src/pages/Book/BookSearch/SearchHotWord/SearchHotWord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookSearch/SearchHotWord/SearchHotWord.js -------------------------------------------------------------------------------- /src/pages/Book/BookSearch/SearchRecommend/SearchRecommend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/BookSearch/SearchRecommend/SearchRecommend.js -------------------------------------------------------------------------------- /src/pages/Book/Female/Female.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/Female/Female.js -------------------------------------------------------------------------------- /src/pages/Book/Male/Banner/Banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/Male/Banner/Banner.js -------------------------------------------------------------------------------- /src/pages/Book/Male/Editor/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/Male/Editor/Editor.js -------------------------------------------------------------------------------- /src/pages/Book/Male/GatherNews/GatherNews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/Male/GatherNews/GatherNews.js -------------------------------------------------------------------------------- /src/pages/Book/Male/GoodBooks/GoodBooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/Male/GoodBooks/GoodBooks.js -------------------------------------------------------------------------------- /src/pages/Book/Male/Male.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/Male/Male.js -------------------------------------------------------------------------------- /src/pages/Book/Recommend/Recommend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Book/Recommend/Recommend.js -------------------------------------------------------------------------------- /src/pages/Home/Booklists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Home/Booklists.js -------------------------------------------------------------------------------- /src/pages/Home/CartoonDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Home/CartoonDetails.js -------------------------------------------------------------------------------- /src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Home/Home.js -------------------------------------------------------------------------------- /src/pages/Home/Tabs/TabChapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Home/Tabs/TabChapter.js -------------------------------------------------------------------------------- /src/pages/Home/Tabs/TabComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Home/Tabs/TabComment.js -------------------------------------------------------------------------------- /src/pages/Home/Tabs/TabDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Home/Tabs/TabDetail.js -------------------------------------------------------------------------------- /src/pages/Home/comicRead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Home/comicRead.js -------------------------------------------------------------------------------- /src/pages/Loading/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Loading/Loading.js -------------------------------------------------------------------------------- /src/pages/Me/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Me/Account.js -------------------------------------------------------------------------------- /src/pages/Me/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Me/Home.js -------------------------------------------------------------------------------- /src/pages/Me/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Me/Login.js -------------------------------------------------------------------------------- /src/pages/Me/Me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Me/Me.js -------------------------------------------------------------------------------- /src/pages/Me/Password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Me/Password.js -------------------------------------------------------------------------------- /src/pages/Me/Phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Me/Phone.js -------------------------------------------------------------------------------- /src/pages/Movie/BaseContant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Movie/BaseContant.js -------------------------------------------------------------------------------- /src/pages/Movie/Migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Movie/Migrations.js -------------------------------------------------------------------------------- /src/pages/Movie/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Movie/Movie.js -------------------------------------------------------------------------------- /src/pages/Movie/RealmManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Movie/RealmManager.js -------------------------------------------------------------------------------- /src/pages/Movie/Schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Movie/Schemas.js -------------------------------------------------------------------------------- /src/pages/Movie/Theme/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Movie/Theme/Theme.js -------------------------------------------------------------------------------- /src/pages/Movie/Theme/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Movie/Theme/Utils.js -------------------------------------------------------------------------------- /src/pages/Movie/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/Movie/loading.js -------------------------------------------------------------------------------- /src/pages/StartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/pages/StartScreen.js -------------------------------------------------------------------------------- /src/store/actionCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/store/actionCreator.js -------------------------------------------------------------------------------- /src/store/actionType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/store/actionType.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/src/store/reducer.js -------------------------------------------------------------------------------- /store/Actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/store/Actions.js -------------------------------------------------------------------------------- /store/Reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/store/Reducer.js -------------------------------------------------------------------------------- /store/StoreContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/store/StoreContext.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zouting0126/RN-/HEAD/yarn.lock --------------------------------------------------------------------------------