├── .DS_Store ├── GoodsList ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── goodslist │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios │ ├── GoodsList-tvOS │ │ └── Info.plist │ ├── GoodsList-tvOSTests │ │ └── Info.plist │ ├── GoodsList.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── GoodsList-tvOS.xcscheme │ │ │ └── GoodsList.xcscheme │ ├── GoodsList │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── GoodsListTests │ │ ├── GoodsListTests.m │ │ └── Info.plist ├── package.json └── yarn.lock ├── News_Pro ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .vscode │ └── launch.json ├── .watchmanconfig ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── news_pro │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── app │ ├── RouteConfig.js │ ├── StackNavigatorConfig.js │ ├── TabNavigator.js │ ├── components │ │ ├── HomeFlatListView.js │ │ ├── NewsDetailHeader.js │ │ ├── VideoFlatListView.js │ │ └── VideoPlayer.js │ ├── pages │ │ ├── Home.js │ │ ├── Live.js │ │ ├── Mine.js │ │ ├── Video.js │ │ └── subPages │ │ │ ├── NewsDetail.js │ │ │ ├── NewsSearch.js │ │ │ └── VideoDetail.js │ └── utils │ │ └── fetch.js ├── assets │ └── images │ │ ├── i_24h.png │ │ ├── i_bookmark.png │ │ ├── i_goback.png │ │ ├── i_home.png │ │ ├── i_home_foc.png │ │ ├── i_hot.png │ │ ├── i_left_arrow_black.png │ │ ├── i_live.png │ │ ├── i_live_foc.png │ │ ├── i_loading.gif │ │ ├── i_menu.png │ │ ├── i_mine.png │ │ ├── i_mine_foc.png │ │ ├── i_night.png │ │ ├── i_play.png │ │ ├── i_reply.png │ │ ├── i_right.png │ │ ├── i_right_arrows.png │ │ ├── i_search.png │ │ ├── i_search_grey.png │ │ ├── i_sign.png │ │ ├── i_triangle.png │ │ ├── i_user.jpg │ │ ├── i_video.png │ │ ├── i_video_foc.png │ │ ├── i_vote_black.png │ │ ├── i_vote_red.png │ │ ├── icon_back.png │ │ ├── icon_back@2x.png │ │ ├── icon_back@3x.png │ │ ├── icon_control_full_screen.png │ │ ├── icon_control_full_screen@2x.png │ │ ├── icon_control_full_screen@3x.png │ │ ├── icon_control_pause.png │ │ ├── icon_control_play.png │ │ ├── icon_control_shrink_screen.png │ │ ├── icon_control_shrink_screen@2x.png │ │ ├── icon_control_shrink_screen@3x.png │ │ ├── icon_control_slider.png │ │ ├── icon_right.png │ │ ├── icon_video_pause.png │ │ ├── icon_video_play.png │ │ ├── img_bottom_shadow.png │ │ ├── img_top_shadow.png │ │ ├── list_placeholder.png │ │ └── logo.png ├── index.js ├── ios │ ├── News_Pro-tvOS │ │ └── Info.plist │ ├── News_Pro-tvOSTests │ │ └── Info.plist │ ├── News_Pro.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── News_Pro-tvOS.xcscheme │ │ │ └── News_Pro.xcscheme │ ├── News_Pro │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── News_ProTests │ │ ├── Info.plist │ │ └── News_ProTests.m ├── package-lock.json ├── package.json └── yarn.lock ├── PicShow ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── picshow │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios │ ├── PicShow-tvOS │ │ └── Info.plist │ ├── PicShow-tvOSTests │ │ └── Info.plist │ ├── PicShow.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── PicShow-tvOS.xcscheme │ │ │ └── PicShow.xcscheme │ ├── PicShow │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── PicShowTests │ │ ├── Info.plist │ │ └── PicShowTests.m ├── package.json └── yarn.lock ├── README.md └── meiTuan ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── meituan │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.js ├── ios ├── meiTuan-tvOS │ └── Info.plist ├── meiTuan-tvOSTests │ └── Info.plist ├── meiTuan.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── meiTuan-tvOS.xcscheme │ │ └── meiTuan.xcscheme ├── meiTuan │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── meiTuanTests │ ├── Info.plist │ └── meiTuanTests.m ├── package-lock.json ├── package.json ├── sc ├── src ├── RootScene.js ├── api.js ├── common │ ├── index.js │ ├── screen.js │ └── system.js ├── img │ ├── home │ │ ├── bg_customReview_image_default.png │ │ ├── icon_deal_anytime_refund.png │ │ ├── icon_homepage_beauty_category.png │ │ ├── icon_homepage_default.png │ │ ├── icon_homepage_entertainment_category.png │ │ ├── icon_homepage_food_category.png │ │ ├── icon_homepage_foottreat_category.png │ │ ├── icon_homepage_hotel_category.png │ │ ├── icon_homepage_ktv_category.png │ │ ├── icon_homepage_life_service_category.png │ │ ├── icon_homepage_map.png │ │ ├── icon_homepage_map_old.png │ │ ├── icon_homepage_map_selected.png │ │ ├── icon_homepage_map_selected_old.png │ │ ├── icon_homepage_movie_category.png │ │ ├── icon_homepage_search.png │ │ ├── icon_homepage_shopping_category.png │ │ └── search_icon.png │ ├── mine │ │ ├── avatar.png │ │ ├── beauty_technician_v15.png │ │ ├── icon_mine_aboutmeituan.png │ │ ├── icon_mine_balance.png │ │ ├── icon_mine_collection.png │ │ ├── icon_mine_comment.png │ │ ├── icon_mine_customerService.png │ │ ├── icon_mine_friends.png │ │ ├── icon_mine_member.png │ │ ├── icon_mine_membercard.png │ │ ├── icon_mine_membercenter.png │ │ ├── icon_mine_mineorder.png │ │ ├── icon_mine_voucher.png │ │ ├── icon_mine_wallet.png │ │ ├── icon_navigation_item_message_white.png │ │ ├── icon_navigation_item_set_white.png │ │ ├── icon_user_avatar_anonymous.png │ │ └── icon_userreview_defaultavatar.png │ ├── order │ │ ├── order_tab_need_pay@2x.png │ │ ├── order_tab_need_review@2x.png │ │ ├── order_tab_need_use@2x.png │ │ └── order_tab_needoffer_aftersale@2x.png │ ├── public │ │ ├── cell_arrow.png │ │ ├── icon_food_merchant_address.png │ │ └── icon_navigation_item_share.png │ └── tabbar │ │ ├── tabbar_discover.png │ │ ├── tabbar_discover_selected.png │ │ ├── tabbar_homepage.png │ │ ├── tabbar_homepage_selected.png │ │ ├── tabbar_merchant.png │ │ ├── tabbar_merchant_selected.png │ │ ├── tabbar_mine.png │ │ ├── tabbar_mine_selected.png │ │ ├── tabbar_order.png │ │ └── tabbar_order_selected.png ├── scene │ ├── GroupPurchaseScene │ │ ├── GroupPurchaseCell.js │ │ └── GroupPurchaseScene.js │ ├── Home │ │ ├── HomeGridItem.js │ │ ├── HomeGridView.js │ │ ├── HomeMenuItem.js │ │ ├── HomeMenuView.js │ │ └── HomeScene.js │ ├── Mine │ │ └── MineScene.js │ ├── Nearby │ │ ├── NearbyHeaderView.js │ │ ├── NearbyListScene.js │ │ └── NearbyScene.js │ └── Order │ │ ├── OrderMenuItem.js │ │ └── OrderScene.js └── widget │ ├── Button.js │ ├── DetailCell.js │ ├── NavigationItem.js │ ├── Separator.js │ ├── SpacingView.js │ ├── TabBarItem.js │ ├── Text.js │ ├── WebScene.js │ ├── color.js │ └── index.js └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/.DS_Store -------------------------------------------------------------------------------- /GoodsList/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /GoodsList/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/.buckconfig -------------------------------------------------------------------------------- /GoodsList/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/.flowconfig -------------------------------------------------------------------------------- /GoodsList/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /GoodsList/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/.gitignore -------------------------------------------------------------------------------- /GoodsList/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /GoodsList/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/App.js -------------------------------------------------------------------------------- /GoodsList/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/BUCK -------------------------------------------------------------------------------- /GoodsList/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/build.gradle -------------------------------------------------------------------------------- /GoodsList/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/java/com/goodslist/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/java/com/goodslist/MainActivity.java -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/java/com/goodslist/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/java/com/goodslist/MainApplication.java -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GoodsList/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GoodsList/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/build.gradle -------------------------------------------------------------------------------- /GoodsList/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/gradle.properties -------------------------------------------------------------------------------- /GoodsList/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GoodsList/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /GoodsList/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/gradlew -------------------------------------------------------------------------------- /GoodsList/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/gradlew.bat -------------------------------------------------------------------------------- /GoodsList/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/keystores/BUCK -------------------------------------------------------------------------------- /GoodsList/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /GoodsList/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'GoodsList' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /GoodsList/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/app.json -------------------------------------------------------------------------------- /GoodsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/index.js -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList-tvOS/Info.plist -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList-tvOSTests/Info.plist -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList.xcodeproj/xcshareddata/xcschemes/GoodsList-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList.xcodeproj/xcshareddata/xcschemes/GoodsList-tvOS.xcscheme -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList.xcodeproj/xcshareddata/xcschemes/GoodsList.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList.xcodeproj/xcshareddata/xcschemes/GoodsList.xcscheme -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList/AppDelegate.h -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList/AppDelegate.m -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList/Info.plist -------------------------------------------------------------------------------- /GoodsList/ios/GoodsList/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsList/main.m -------------------------------------------------------------------------------- /GoodsList/ios/GoodsListTests/GoodsListTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsListTests/GoodsListTests.m -------------------------------------------------------------------------------- /GoodsList/ios/GoodsListTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/ios/GoodsListTests/Info.plist -------------------------------------------------------------------------------- /GoodsList/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/package.json -------------------------------------------------------------------------------- /GoodsList/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/GoodsList/yarn.lock -------------------------------------------------------------------------------- /News_Pro/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /News_Pro/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/.buckconfig -------------------------------------------------------------------------------- /News_Pro/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/.flowconfig -------------------------------------------------------------------------------- /News_Pro/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /News_Pro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/.gitignore -------------------------------------------------------------------------------- /News_Pro/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/.vscode/launch.json -------------------------------------------------------------------------------- /News_Pro/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /News_Pro/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/App.js -------------------------------------------------------------------------------- /News_Pro/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/BUCK -------------------------------------------------------------------------------- /News_Pro/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/build.gradle -------------------------------------------------------------------------------- /News_Pro/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/java/com/news_pro/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/java/com/news_pro/MainActivity.java -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/java/com/news_pro/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/java/com/news_pro/MainApplication.java -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /News_Pro/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /News_Pro/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/build.gradle -------------------------------------------------------------------------------- /News_Pro/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/gradle.properties -------------------------------------------------------------------------------- /News_Pro/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /News_Pro/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /News_Pro/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/gradlew -------------------------------------------------------------------------------- /News_Pro/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/gradlew.bat -------------------------------------------------------------------------------- /News_Pro/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/keystores/BUCK -------------------------------------------------------------------------------- /News_Pro/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /News_Pro/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/android/settings.gradle -------------------------------------------------------------------------------- /News_Pro/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app.json -------------------------------------------------------------------------------- /News_Pro/app/RouteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/RouteConfig.js -------------------------------------------------------------------------------- /News_Pro/app/StackNavigatorConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/StackNavigatorConfig.js -------------------------------------------------------------------------------- /News_Pro/app/TabNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/TabNavigator.js -------------------------------------------------------------------------------- /News_Pro/app/components/HomeFlatListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/components/HomeFlatListView.js -------------------------------------------------------------------------------- /News_Pro/app/components/NewsDetailHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/components/NewsDetailHeader.js -------------------------------------------------------------------------------- /News_Pro/app/components/VideoFlatListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/components/VideoFlatListView.js -------------------------------------------------------------------------------- /News_Pro/app/components/VideoPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/components/VideoPlayer.js -------------------------------------------------------------------------------- /News_Pro/app/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/pages/Home.js -------------------------------------------------------------------------------- /News_Pro/app/pages/Live.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/pages/Live.js -------------------------------------------------------------------------------- /News_Pro/app/pages/Mine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/pages/Mine.js -------------------------------------------------------------------------------- /News_Pro/app/pages/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/pages/Video.js -------------------------------------------------------------------------------- /News_Pro/app/pages/subPages/NewsDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/pages/subPages/NewsDetail.js -------------------------------------------------------------------------------- /News_Pro/app/pages/subPages/NewsSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/pages/subPages/NewsSearch.js -------------------------------------------------------------------------------- /News_Pro/app/pages/subPages/VideoDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/pages/subPages/VideoDetail.js -------------------------------------------------------------------------------- /News_Pro/app/utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/app/utils/fetch.js -------------------------------------------------------------------------------- /News_Pro/assets/images/i_24h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_24h.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_bookmark.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_goback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_goback.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_home.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_home_foc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_home_foc.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_hot.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_left_arrow_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_left_arrow_black.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_live.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_live_foc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_live_foc.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_loading.gif -------------------------------------------------------------------------------- /News_Pro/assets/images/i_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_menu.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_mine.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_mine_foc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_mine_foc.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_night.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_play.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_reply.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_right.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_right_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_right_arrows.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_search.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_search_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_search_grey.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_sign.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_triangle.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_user.jpg -------------------------------------------------------------------------------- /News_Pro/assets/images/i_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_video.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_video_foc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_video_foc.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_vote_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_vote_black.png -------------------------------------------------------------------------------- /News_Pro/assets/images/i_vote_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/i_vote_red.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_back.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_back@2x.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_back@3x.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_full_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_full_screen.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_full_screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_full_screen@2x.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_full_screen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_full_screen@3x.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_pause.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_play.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_shrink_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_shrink_screen.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_shrink_screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_shrink_screen@2x.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_shrink_screen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_shrink_screen@3x.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_control_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_control_slider.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_right.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_video_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_video_pause.png -------------------------------------------------------------------------------- /News_Pro/assets/images/icon_video_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/icon_video_play.png -------------------------------------------------------------------------------- /News_Pro/assets/images/img_bottom_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/img_bottom_shadow.png -------------------------------------------------------------------------------- /News_Pro/assets/images/img_top_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/img_top_shadow.png -------------------------------------------------------------------------------- /News_Pro/assets/images/list_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/list_placeholder.png -------------------------------------------------------------------------------- /News_Pro/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/assets/images/logo.png -------------------------------------------------------------------------------- /News_Pro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/index.js -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro-tvOS/Info.plist -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro-tvOSTests/Info.plist -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro.xcodeproj/xcshareddata/xcschemes/News_Pro-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro.xcodeproj/xcshareddata/xcschemes/News_Pro-tvOS.xcscheme -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro.xcodeproj/xcshareddata/xcschemes/News_Pro.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro.xcodeproj/xcshareddata/xcschemes/News_Pro.xcscheme -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro/AppDelegate.h -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro/AppDelegate.m -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro/Info.plist -------------------------------------------------------------------------------- /News_Pro/ios/News_Pro/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_Pro/main.m -------------------------------------------------------------------------------- /News_Pro/ios/News_ProTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_ProTests/Info.plist -------------------------------------------------------------------------------- /News_Pro/ios/News_ProTests/News_ProTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/ios/News_ProTests/News_ProTests.m -------------------------------------------------------------------------------- /News_Pro/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/package-lock.json -------------------------------------------------------------------------------- /News_Pro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/package.json -------------------------------------------------------------------------------- /News_Pro/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/News_Pro/yarn.lock -------------------------------------------------------------------------------- /PicShow/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /PicShow/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/.buckconfig -------------------------------------------------------------------------------- /PicShow/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/.flowconfig -------------------------------------------------------------------------------- /PicShow/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /PicShow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/.gitignore -------------------------------------------------------------------------------- /PicShow/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /PicShow/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/App.js -------------------------------------------------------------------------------- /PicShow/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/BUCK -------------------------------------------------------------------------------- /PicShow/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/build.gradle -------------------------------------------------------------------------------- /PicShow/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /PicShow/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /PicShow/android/app/src/main/java/com/picshow/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/java/com/picshow/MainActivity.java -------------------------------------------------------------------------------- /PicShow/android/app/src/main/java/com/picshow/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/java/com/picshow/MainApplication.java -------------------------------------------------------------------------------- /PicShow/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PicShow/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PicShow/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PicShow/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PicShow/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /PicShow/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /PicShow/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/build.gradle -------------------------------------------------------------------------------- /PicShow/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/gradle.properties -------------------------------------------------------------------------------- /PicShow/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PicShow/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /PicShow/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/gradlew -------------------------------------------------------------------------------- /PicShow/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/gradlew.bat -------------------------------------------------------------------------------- /PicShow/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/keystores/BUCK -------------------------------------------------------------------------------- /PicShow/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /PicShow/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'PicShow' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /PicShow/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/app.json -------------------------------------------------------------------------------- /PicShow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/index.js -------------------------------------------------------------------------------- /PicShow/ios/PicShow-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow-tvOS/Info.plist -------------------------------------------------------------------------------- /PicShow/ios/PicShow-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow-tvOSTests/Info.plist -------------------------------------------------------------------------------- /PicShow/ios/PicShow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PicShow/ios/PicShow.xcodeproj/xcshareddata/xcschemes/PicShow-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow.xcodeproj/xcshareddata/xcschemes/PicShow-tvOS.xcscheme -------------------------------------------------------------------------------- /PicShow/ios/PicShow.xcodeproj/xcshareddata/xcschemes/PicShow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow.xcodeproj/xcshareddata/xcschemes/PicShow.xcscheme -------------------------------------------------------------------------------- /PicShow/ios/PicShow/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow/AppDelegate.h -------------------------------------------------------------------------------- /PicShow/ios/PicShow/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow/AppDelegate.m -------------------------------------------------------------------------------- /PicShow/ios/PicShow/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /PicShow/ios/PicShow/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PicShow/ios/PicShow/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /PicShow/ios/PicShow/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow/Info.plist -------------------------------------------------------------------------------- /PicShow/ios/PicShow/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShow/main.m -------------------------------------------------------------------------------- /PicShow/ios/PicShowTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShowTests/Info.plist -------------------------------------------------------------------------------- /PicShow/ios/PicShowTests/PicShowTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/ios/PicShowTests/PicShowTests.m -------------------------------------------------------------------------------- /PicShow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/package.json -------------------------------------------------------------------------------- /PicShow/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/PicShow/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/README.md -------------------------------------------------------------------------------- /meiTuan/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /meiTuan/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/.buckconfig -------------------------------------------------------------------------------- /meiTuan/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/.flowconfig -------------------------------------------------------------------------------- /meiTuan/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /meiTuan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/.gitignore -------------------------------------------------------------------------------- /meiTuan/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /meiTuan/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/App.js -------------------------------------------------------------------------------- /meiTuan/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/BUCK -------------------------------------------------------------------------------- /meiTuan/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/build.gradle -------------------------------------------------------------------------------- /meiTuan/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/java/com/meituan/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/java/com/meituan/MainActivity.java -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/java/com/meituan/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/java/com/meituan/MainApplication.java -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /meiTuan/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /meiTuan/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/build.gradle -------------------------------------------------------------------------------- /meiTuan/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/gradle.properties -------------------------------------------------------------------------------- /meiTuan/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /meiTuan/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /meiTuan/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/gradlew -------------------------------------------------------------------------------- /meiTuan/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/gradlew.bat -------------------------------------------------------------------------------- /meiTuan/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/keystores/BUCK -------------------------------------------------------------------------------- /meiTuan/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /meiTuan/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'meiTuan' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /meiTuan/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/app.json -------------------------------------------------------------------------------- /meiTuan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/index.js -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan-tvOS/Info.plist -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan-tvOSTests/Info.plist -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan.xcodeproj/xcshareddata/xcschemes/meiTuan-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan.xcodeproj/xcshareddata/xcschemes/meiTuan-tvOS.xcscheme -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan.xcodeproj/xcshareddata/xcschemes/meiTuan.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan.xcodeproj/xcshareddata/xcschemes/meiTuan.xcscheme -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan/AppDelegate.h -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan/AppDelegate.m -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan/Info.plist -------------------------------------------------------------------------------- /meiTuan/ios/meiTuan/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuan/main.m -------------------------------------------------------------------------------- /meiTuan/ios/meiTuanTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuanTests/Info.plist -------------------------------------------------------------------------------- /meiTuan/ios/meiTuanTests/meiTuanTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/ios/meiTuanTests/meiTuanTests.m -------------------------------------------------------------------------------- /meiTuan/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/package-lock.json -------------------------------------------------------------------------------- /meiTuan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/package.json -------------------------------------------------------------------------------- /meiTuan/sc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meiTuan/src/RootScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/RootScene.js -------------------------------------------------------------------------------- /meiTuan/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/api.js -------------------------------------------------------------------------------- /meiTuan/src/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/common/index.js -------------------------------------------------------------------------------- /meiTuan/src/common/screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/common/screen.js -------------------------------------------------------------------------------- /meiTuan/src/common/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/common/system.js -------------------------------------------------------------------------------- /meiTuan/src/img/home/bg_customReview_image_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/bg_customReview_image_default.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_deal_anytime_refund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_deal_anytime_refund.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_beauty_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_beauty_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_default.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_entertainment_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_entertainment_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_food_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_food_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_foottreat_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_foottreat_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_hotel_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_hotel_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_ktv_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_ktv_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_life_service_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_life_service_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_map.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_map_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_map_old.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_map_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_map_selected.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_map_selected_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_map_selected_old.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_movie_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_movie_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_search.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/icon_homepage_shopping_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/icon_homepage_shopping_category.png -------------------------------------------------------------------------------- /meiTuan/src/img/home/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/home/search_icon.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/avatar.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/beauty_technician_v15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/beauty_technician_v15.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_aboutmeituan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_aboutmeituan.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_balance.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_collection.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_comment.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_customerService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_customerService.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_friends.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_member.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_membercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_membercard.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_membercenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_membercenter.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_mineorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_mineorder.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_voucher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_voucher.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_mine_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_mine_wallet.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_navigation_item_message_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_navigation_item_message_white.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_navigation_item_set_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_navigation_item_set_white.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_user_avatar_anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_user_avatar_anonymous.png -------------------------------------------------------------------------------- /meiTuan/src/img/mine/icon_userreview_defaultavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/mine/icon_userreview_defaultavatar.png -------------------------------------------------------------------------------- /meiTuan/src/img/order/order_tab_need_pay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/order/order_tab_need_pay@2x.png -------------------------------------------------------------------------------- /meiTuan/src/img/order/order_tab_need_review@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/order/order_tab_need_review@2x.png -------------------------------------------------------------------------------- /meiTuan/src/img/order/order_tab_need_use@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/order/order_tab_need_use@2x.png -------------------------------------------------------------------------------- /meiTuan/src/img/order/order_tab_needoffer_aftersale@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/order/order_tab_needoffer_aftersale@2x.png -------------------------------------------------------------------------------- /meiTuan/src/img/public/cell_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/public/cell_arrow.png -------------------------------------------------------------------------------- /meiTuan/src/img/public/icon_food_merchant_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/public/icon_food_merchant_address.png -------------------------------------------------------------------------------- /meiTuan/src/img/public/icon_navigation_item_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/public/icon_navigation_item_share.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_discover.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_discover_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_discover_selected.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_homepage.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_homepage_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_homepage_selected.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_merchant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_merchant.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_merchant_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_merchant_selected.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_mine.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_mine_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_mine_selected.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_order.png -------------------------------------------------------------------------------- /meiTuan/src/img/tabbar/tabbar_order_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/img/tabbar/tabbar_order_selected.png -------------------------------------------------------------------------------- /meiTuan/src/scene/GroupPurchaseScene/GroupPurchaseCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/GroupPurchaseScene/GroupPurchaseCell.js -------------------------------------------------------------------------------- /meiTuan/src/scene/GroupPurchaseScene/GroupPurchaseScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/GroupPurchaseScene/GroupPurchaseScene.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Home/HomeGridItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Home/HomeGridItem.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Home/HomeGridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Home/HomeGridView.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Home/HomeMenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Home/HomeMenuItem.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Home/HomeMenuView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Home/HomeMenuView.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Home/HomeScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Home/HomeScene.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Mine/MineScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Mine/MineScene.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Nearby/NearbyHeaderView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Nearby/NearbyHeaderView.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Nearby/NearbyListScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Nearby/NearbyListScene.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Nearby/NearbyScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Nearby/NearbyScene.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Order/OrderMenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Order/OrderMenuItem.js -------------------------------------------------------------------------------- /meiTuan/src/scene/Order/OrderScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/scene/Order/OrderScene.js -------------------------------------------------------------------------------- /meiTuan/src/widget/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/Button.js -------------------------------------------------------------------------------- /meiTuan/src/widget/DetailCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/DetailCell.js -------------------------------------------------------------------------------- /meiTuan/src/widget/NavigationItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/NavigationItem.js -------------------------------------------------------------------------------- /meiTuan/src/widget/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/Separator.js -------------------------------------------------------------------------------- /meiTuan/src/widget/SpacingView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/SpacingView.js -------------------------------------------------------------------------------- /meiTuan/src/widget/TabBarItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/TabBarItem.js -------------------------------------------------------------------------------- /meiTuan/src/widget/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/Text.js -------------------------------------------------------------------------------- /meiTuan/src/widget/WebScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/WebScene.js -------------------------------------------------------------------------------- /meiTuan/src/widget/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/color.js -------------------------------------------------------------------------------- /meiTuan/src/widget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/src/widget/index.js -------------------------------------------------------------------------------- /meiTuan/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manofit/React-Native_demo/HEAD/meiTuan/yarn.lock --------------------------------------------------------------------------------