├── README.md └── 简仿美团小Demo-react - native ├── .idea ├── -07.iml ├── dictionaries │ └── douguangbin.xml ├── fileColors.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLibraryMappings.xml ├── misc.xml ├── modules.xml ├── watcherTasks.xml └── workspace.xml └── DTuanBuy ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── Compoment ├── DDHome │ ├── DDHome.js │ ├── DDHomeCommonViewCell.js │ ├── DDHomeDetail.js │ ├── DDHomeGeustYouLike.js │ ├── DDHomeMiddleBottomView.js │ ├── DDHomeMiddleView.js │ ├── DDHomeShopCenter.js │ ├── DDHomeShopIcon.js │ ├── DDHomeTopComCell.js │ ├── DDHomeTopView.js │ ├── DDHomeYouLikeListView.js │ ├── DDMiddleCommonView.js │ ├── DDTopListView.js │ └── localData │ │ ├── DD_Home_D4.json │ │ ├── DD_Home_D5.json │ │ ├── TopMenu.json │ │ ├── TopMiddle.json │ │ └── TopMiddleLeft.json ├── DDMain │ └── DDMain.js ├── DDMine │ ├── DDMine.js │ ├── DDMineCommonCell.js │ ├── DDMineMiddleView.js │ ├── DDMineheaderBottomView.js │ ├── DDMineheaderTopView.js │ └── Data │ │ └── MiddleData.json ├── DDMore │ ├── DDMore.js │ └── DDMoreCommonCell.js └── DDShop │ ├── DDCommonNavBar.js │ └── DDShop.js ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── dtuanbuy │ │ │ ├── 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 ├── index.android.js ├── index.ios.js ├── ios ├── DTuanBuy.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── DTuanBuy.xcscheme ├── DTuanBuy │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── CommonImage │ │ │ ├── Contents.json │ │ │ ├── bg_merchant_photo_placeholder_big.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bg_merchant_photo_placeholder_big@2x.png │ │ │ ├── bg_merchant_photo_placeholder_small.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bg_merchant_photo_placeholder_small@2x.png │ │ │ ├── icon_arrow_selected_yellow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_arrow_selected_yellow@2x.png │ │ │ ├── icon_camera_back_highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_camera_back_highlighted@2x.png │ │ │ ├── icon_camera_back_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_camera_back_normal@2x.png │ │ │ ├── icon_camera_finish_disabled.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_camera_finish_disabled@2x.png │ │ │ ├── icon_camera_finish_highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_camera_finish_highlighted@2x.png │ │ │ ├── icon_camera_finish_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_camera_finish_normal@2x.png │ │ │ ├── icon_cell_rightArrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_cell_rightArrow@2x.png │ │ │ ├── icon_cell_rightArrow_disabled.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_cell_rightArrow_disabled.png │ │ │ ├── icon_cell_rightArrow_orange.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_cell_rightArrow_orange@2x.png │ │ │ └── icon_cell_rightArrow_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_cell_rightArrow_selected.png │ │ ├── Contents.json │ │ ├── Home │ │ │ ├── Contents.json │ │ │ ├── avatar_enterprise_vip.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── avatar_enterprise_vip@2x.png │ │ │ │ └── avatar_enterprise_vip@3x.png │ │ │ ├── icon_deal_ guarantee.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_deal_ guarantee@2x.png │ │ │ ├── icon_deal_campaign.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_deal_campaign@2x.png │ │ │ ├── icon_deal_exclusive-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_deal_exclusive@2x.png │ │ │ ├── icon_deal_exclusive.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_deal_exclusive@2x.png │ │ │ ├── icon_deal_mainpush.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_deal_mainpush@2x.png │ │ │ ├── icon_deal_mark_collected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_deal_mark_collected@2x.png │ │ │ ├── icon_deal_nobooking.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_deal_nobooking@2x.png │ │ │ ├── icon_defaultimage_shoppingmall_merchant.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_defaultimage_shoppingmall_merchant@2x.png │ │ │ ├── icon_homepage_CouponCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_CouponCategory.png │ │ │ ├── icon_homepage_KTVCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_KTVCategory.png │ │ │ ├── icon_homepage_MTLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_MTLogo.png │ │ │ ├── icon_homepage_aroundjourneyCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_aroundjourneyCategory.png │ │ │ ├── icon_homepage_beautyCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_beautyCategory.png │ │ │ ├── icon_homepage_cakeCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_cakeCategory.png │ │ │ ├── icon_homepage_categoryLine.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_categoryLine.png │ │ │ ├── icon_homepage_category_page_default.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_category_page_default@2x.png │ │ │ ├── icon_homepage_category_page_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_category_page_selected@2x.png │ │ │ ├── icon_homepage_dailyNewDealCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_dailyNewDealCategory.png │ │ │ ├── icon_homepage_default.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_default.png │ │ │ ├── icon_homepage_down_arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_downArrow@2x.png │ │ │ ├── icon_homepage_entertainmentCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_entertainmentCategory.png │ │ │ ├── icon_homepage_fastfoodCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_fastfoodCategory.png │ │ │ ├── icon_homepage_foodCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_foodCategory.png │ │ │ ├── icon_homepage_foottreatCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_foottreatCategory.png │ │ │ ├── icon_homepage_guess_default.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_guess_default.jpg │ │ │ ├── icon_homepage_haircutCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_haircutCategory.png │ │ │ ├── icon_homepage_hotCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_hotCategory.png │ │ │ ├── icon_homepage_hotDealArrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_hotDealArrow.png │ │ │ ├── icon_homepage_hotTopicArrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_hotTopicArrow.png │ │ │ ├── icon_homepage_hotelCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_hotelCategory.png │ │ │ ├── icon_homepage_lifeServiceCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_lifeServiceCategory.png │ │ │ ├── icon_homepage_lotteryCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_lotteryCategory.png │ │ │ ├── icon_homepage_map.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_map.png │ │ │ ├── icon_homepage_map_old.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_map_old.png │ │ │ ├── icon_homepage_map_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_map_selected.png │ │ │ ├── icon_homepage_map_selected_old.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_map_selected_old.png │ │ │ ├── icon_homepage_message_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_message_pressed@2x.png │ │ │ ├── icon_homepage_moreCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_moreCategory.png │ │ │ ├── icon_homepage_movieCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_movieCategory.png │ │ │ ├── icon_homepage_navArrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_navArrow.png │ │ │ ├── icon_homepage_search.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_search.png │ │ │ ├── icon_homepage_shadowLine.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_shadowLine.png │ │ │ ├── icon_homepage_shoppingCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_shoppingCategory.png │ │ │ ├── icon_homepage_takeoutCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_takeoutCategory.png │ │ │ ├── icon_homepage_travellingCategory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_travellingCategory.png │ │ │ ├── icon_homepage_upArrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_upArrow@2x.png │ │ │ ├── mdqg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mdqg@2x.png │ │ │ │ └── mdqg@3x.png │ │ │ ├── nsj.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nsj@2x.png │ │ │ ├── scale.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── scale@2x.png │ │ │ ├── tttj.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tttj@2x.png │ │ │ └── yyms.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── yyms@2x.png │ │ ├── HomeHot │ │ │ ├── Contents.json │ │ │ ├── hot_air.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hot_air.png │ │ │ ├── hot_car.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hot_car.png │ │ │ ├── hot_eat.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hot_eat.png │ │ │ ├── hot_play.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hot_play.png │ │ │ ├── hot_wash.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hot_wash.png │ │ │ ├── hot_water.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hot_water.png │ │ │ └── icon_hot.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_hot.png │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── LaunchImage-700-568h@2x.png │ │ │ ├── LaunchImage-700@2x.png │ │ │ ├── LaunchImage-800-667h@2x.png │ │ │ └── LaunchImage-800-Portrait-736h@3x.png │ │ ├── Me │ │ │ ├── 00x.imageset │ │ │ │ ├── 00x.jpg │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── avatar_grassroot.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── avatar_grassroot@2x.png │ │ │ │ └── avatar_grassroot@3x.png │ │ │ ├── avatar_vgirl.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── avatar_vgirl@2x.png │ │ │ │ └── avatar_vgirl@3x.png │ │ │ ├── avatar_vip.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── avatar_vip@2x.png │ │ │ │ └── avatar_vip@3x.png │ │ │ ├── card.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── card@2x.png │ │ │ ├── collect.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── collect@2x.png │ │ │ ├── draft.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── draft@2x.png │ │ │ ├── like.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── like@2x.png │ │ │ ├── me_new.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── me_new@2x.png │ │ │ ├── new_friend.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── new_friend@2x.png │ │ │ ├── order1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── order1@2x.png │ │ │ ├── order2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── order2@2x.png │ │ │ ├── order3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── order3@2x.png │ │ │ ├── order4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── order4@2x.png │ │ │ └── pay.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pay@2x.png │ │ ├── Nav │ │ │ ├── Contents.json │ │ │ ├── icon_homepage_message.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_message@2x.png │ │ │ ├── icon_homepage_scan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_homepage_scan@2x.png │ │ │ ├── icon_mine_setting.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_mine_setting@2x.png │ │ │ ├── icon_shop_local.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_shop_local@2x.png │ │ │ ├── icon_shop_search.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_shop_search@2x.png │ │ │ └── navigationbar_arrow_up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── navigationbar_arrow_up@2x.png │ │ ├── Shop │ │ │ ├── Contents.json │ │ │ ├── kd.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kd.png │ │ │ ├── lyl.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lyl.png │ │ │ ├── wd.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wd.png │ │ │ └── zjgc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── zjgc.png │ │ ├── Slider │ │ │ ├── Contents.json │ │ │ ├── bg_open_point_trip.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bg_open_point_trip@2x.png │ │ │ └── bg_open_point_trip_568h.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bg_open_point_trip_568h@2x.png │ │ ├── TabBar │ │ │ ├── Contents.json │ │ │ ├── icon_tabbar_homepage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_tabbar_homepage@2x.png │ │ │ ├── icon_tabbar_homepage_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_tabbar_homepage_selected@2x.png │ │ │ ├── icon_tabbar_merchant_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_tabbar_merchant_normal@2x.png │ │ │ ├── icon_tabbar_merchant_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_tabbar_merchant_selected@2x.png │ │ │ ├── icon_tabbar_mine.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_tabbar_mine@2x.png │ │ │ ├── icon_tabbar_mine_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_tabbar_mine_selected@2x.png │ │ │ ├── icon_tabbar_misc.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_tabbar_misc@2x.png │ │ │ └── icon_tabbar_misc_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_tabbar_misc_selected@2x.png │ │ └── homeMenu │ │ │ ├── Contents.json │ │ │ ├── cnxh.imageset │ │ │ ├── Contents.json │ │ │ └── cnxh@2x.png │ │ │ ├── dy.imageset │ │ │ ├── Contents.json │ │ │ └── dy@2x.png │ │ │ ├── gw.imageset │ │ │ ├── Contents.json │ │ │ └── gw@2x.png │ │ │ ├── gwzx.imageset │ │ │ ├── Contents.json │ │ │ └── gwzx@2x.png │ │ │ ├── hcpjp.imageset │ │ │ ├── Contents.json │ │ │ └── hcpjp@2x.png │ │ │ ├── home_arrow.imageset │ │ │ ├── Contents.json │ │ │ └── home_arrow@2x.png │ │ │ ├── icon_cinema_presale.imageset │ │ │ ├── Contents.json │ │ │ └── icon_cinema_presale@2x.png │ │ │ ├── icon_deal_nearest.imageset │ │ │ ├── Contents.json │ │ │ └── icon_deal_nearest.png │ │ │ ├── icon_movie_3D_IMAX.imageset │ │ │ ├── Contents.json │ │ │ └── icon_movie_3D_IMAX@2x.png │ │ │ ├── jd.imageset │ │ │ ├── Contents.json │ │ │ └── jd@2x.png │ │ │ ├── jdmp.imageset │ │ │ ├── Contents.json │ │ │ └── jdmp@2x.png │ │ │ ├── jrxd.imageset │ │ │ ├── Contents.json │ │ │ └── jrxd@2x.png │ │ │ ├── ktv.imageset │ │ │ ├── Contents.json │ │ │ └── ktv@2x.png │ │ │ ├── lr.imageset │ │ │ ├── Contents.json │ │ │ └── lr@2x.png │ │ │ ├── ly.imageset │ │ │ ├── Contents.json │ │ │ └── ly@2x.png │ │ │ ├── mj.imageset │ │ │ ├── Contents.json │ │ │ └── mj@2x.png │ │ │ ├── ms.imageset │ │ │ ├── Contents.json │ │ │ └── ms@2x.png │ │ │ ├── qbfl.imageset │ │ │ ├── Contents.json │ │ │ └── qbfl@2x.png │ │ │ ├── rm.imageset │ │ │ ├── Contents.json │ │ │ └── rm@2x.png │ │ │ ├── shfw.imageset │ │ │ ├── Contents.json │ │ │ └── shfw@2x.png │ │ │ ├── tdyp.imageset │ │ │ ├── Contents.json │ │ │ └── tdyp@2x.png │ │ │ ├── wm.imageset │ │ │ ├── Contents.json │ │ │ └── wm@2x.png │ │ │ ├── xckc.imageset │ │ │ ├── Contents.json │ │ │ └── xckc@2x.png │ │ │ ├── xxyl.imageset │ │ │ ├── Contents.json │ │ │ └── xxyl@2x.png │ │ │ ├── zby.imageset │ │ │ ├── Contents.json │ │ │ └── zby@2x.png │ │ │ ├── zlam.imageset │ │ │ ├── Contents.json │ │ │ └── zlam@2x.png │ │ │ └── zzc.imageset │ │ │ ├── Contents.json │ │ │ └── zzc@2x.png │ ├── Info.plist │ └── main.m └── DTuanBuyTests │ ├── DTuanBuyTests.m │ └── Info.plist └── package.json /简仿美团小Demo-react - native/.idea/-07.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/.idea/dictionaries/douguangbin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/.idea/fileColors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | File Watchers 22 | 23 | 24 | Less 25 | 26 | 27 | 28 | 29 | Less 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | AngularJS 44 | 45 | 46 | 47 | 48 | 49 | 50 | $USER_HOME$/.subversion 51 | 52 | 53 | 54 | 55 | 56 | 57 | 62 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/.idea/watcherTasks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16 | 23 | 24 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | module.system=haste 26 | 27 | experimental.strict_type_args=true 28 | 29 | munge_underscores=true 30 | 31 | module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub' 32 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 33 | 34 | suppress_type=$FlowIssue 35 | suppress_type=$FlowFixMe 36 | suppress_type=$FixMe 37 | 38 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-5]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-5]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 41 | 42 | unsafe.enable_getters_and_setters=true 43 | 44 | [version] 45 | ^0.35.0 46 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | 38 | # BUCK 39 | buck-out/ 40 | \.buckd/ 41 | android/app/libs 42 | *.keystore 43 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/DDHomeCommonViewCell.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/23. 3 | */ 4 | 5 | 6 | import React, { Component } from 'react'; 7 | import { 8 | AppRegistry, 9 | StyleSheet, 10 | Text, 11 | View, 12 | Image, 13 | TouchableOpacity 14 | } from 'react-native'; 15 | 16 | 17 | var HomeCommonViewCell = React.createClass({ 18 | 19 | getDefaultProps(){ 20 | return{ 21 | leftIcon : '', 22 | leftTitle : '', 23 | rightTitle : '' 24 | } 25 | }, 26 | 27 | 28 | 29 | render() { 30 | return ( 31 | alert('去你妹的啊')} style={styles.outViewStyle}> 32 | 33 | {/*左边*/} 34 | 35 | 36 | {this.props.leftTitle} 37 | 38 | {/*右边*/} 39 | 40 | {this.props.rightTitle} 41 | 42 | 43 | 44 | 45 | ); 46 | } 47 | 48 | }); 49 | 50 | 51 | const styles = StyleSheet.create({ 52 | 53 | outViewStyle: { 54 | backgroundColor:'white', 55 | height: 44, 56 | justifyContent:'center', 57 | marginBottom:1, 58 | 59 | }, 60 | 61 | container: { 62 | 63 | flexDirection:'row', 64 | justifyContent:'space-between', 65 | 66 | alignItems:'center' 67 | 68 | }, 69 | 70 | leftViewStyle: { 71 | marginLeft:8, 72 | flexDirection:"row", 73 | 74 | alignItems:"center" 75 | 76 | }, 77 | 78 | rightViewStyle: { 79 | 80 | marginRight:8, 81 | flexDirection: 'row', 82 | 83 | alignItems:'center' 84 | }, 85 | 86 | leftIconStyle: { 87 | width:22, 88 | height:22 89 | 90 | }, 91 | 92 | arrowStyle: { 93 | 94 | width:8, 95 | height:13 96 | 97 | }, 98 | 99 | }); 100 | // 101 | module.exports = HomeCommonViewCell; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/DDHomeDetail.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/1. 3 | */ 4 | 5 | 6 | import React, { Component } from 'react'; 7 | import { 8 | AppRegistry, 9 | StyleSheet, 10 | Text, 11 | View, 12 | TouchableOpacity, 13 | WebView 14 | } from 'react-native'; 15 | 16 | 17 | 18 | var HomeDetail = React.createClass({ 19 | render() { 20 | return ( 21 | 27 | 28 | ); 29 | }, 30 | 31 | // 弹出界面 32 | popToHomeDetail(){ 33 | 34 | this.props.navigator.pop(); 35 | } 36 | 37 | }); 38 | 39 | 40 | const styles = StyleSheet.create({ 41 | container: { 42 | flex: 1, 43 | justifyContent: 'center', 44 | alignItems: 'center', 45 | backgroundColor: 'red', 46 | }, 47 | welcome: { 48 | fontSize: 20, 49 | textAlign: 'center', 50 | margin: 10, 51 | }, 52 | 53 | }); 54 | 55 | 56 | 57 | // 58 | module.exports = HomeDetail; 59 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/DDHomeGeustYouLike.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/23. 3 | */ 4 | 5 | import React, { Component } from 'react'; 6 | import { 7 | AppRegistry, 8 | StyleSheet, 9 | Text, 10 | View 11 | } from 'react-native'; 12 | 13 | 14 | var CommonViewCell = require('./DDHomeCommonViewCell'); 15 | var HomeYouLikeListView = require('./DDHomeYouLikeListView'); 16 | 17 | var HomeGeustYouLike = React.createClass({ 18 | render() { 19 | return ( 20 | 21 | {/*上半部分*/} 22 | 26 | {/*下半部分*/} 27 | 28 | 29 | 30 | ); 31 | } 32 | 33 | }); 34 | 35 | 36 | const styles = StyleSheet.create({ 37 | container: { 38 | backgroundColor: 'white', 39 | marginTop:15, 40 | 41 | }, 42 | 43 | }); 44 | 45 | 46 | 47 | // 48 | module.exports = HomeGeustYouLike; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/DDHomeShopCenter.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/23. 3 | */ 4 | 5 | import React, { Component } from 'react'; 6 | import { 7 | AppRegistry, 8 | StyleSheet, 9 | Text, 10 | View, 11 | ScrollView 12 | } from 'react-native'; 13 | 14 | var HomeCommomViewCell = require('./DDHomeCommonViewCell'); 15 | var HomeShopIconView = require('./DDHomeShopIcon'); 16 | 17 | 18 | var HomeShopCenter = React.createClass({ 19 | 20 | getInitialState(){ 21 | 22 | return{ 23 | ShopCenterData :{}, 24 | popToHomeWithData :{} 25 | } 26 | }, 27 | 28 | 29 | render() { 30 | return ( 31 | 32 | {/*上部分*/} 33 | 38 | {/*下部分*/} 39 | 44 | {this.renderItem()} 45 | 46 | 47 | ); 48 | }, 49 | 50 | //返回组件 51 | renderItem(){ 52 | //解析需要的数据 53 | var dataArr = this.props.ShopCenterData.data; 54 | //组件数据 55 | var itemArr = []; 56 | //遍历 创建对应的组件 57 | for(var i = 0; i < dataArr.length; i++){ 58 | 59 | var data = dataArr[i]; 60 | 61 | itemArr.push( 62 | {this.popToHome(data)}}/> 63 | ); 64 | 65 | } 66 | return itemArr; 67 | }, 68 | 69 | // 70 | popToHome(data){ 71 | 72 | this.props.popToHomeWithData(data); 73 | 74 | }, 75 | 76 | }); 77 | 78 | 79 | const styles = StyleSheet.create({ 80 | container: { 81 | 82 | marginTop:15 83 | 84 | }, 85 | 86 | scrollviewStyle: { 87 | 88 | backgroundColor:'white', 89 | padding:8 90 | 91 | } 92 | 93 | }); 94 | 95 | 96 | 97 | // 98 | module.exports = HomeShopCenter; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/DDHomeShopIcon.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/23. 3 | */ 4 | 5 | import React, { Component } from 'react'; 6 | import { 7 | AppRegistry, 8 | StyleSheet, 9 | Text, 10 | View, 11 | Image, 12 | TouchableOpacity 13 | } from 'react-native'; 14 | 15 | // 16 | var HomeDetail = require('./DDHomeDetail'); 17 | 18 | var HomeShopIcon = React.createClass({ 19 | 20 | getDefaultProps(){ 21 | return{ 22 | shopIconData:{}, //属性 23 | popToShopCerten:{} //回调函数 24 | } 25 | }, 26 | 27 | 28 | 29 | render() { 30 | return ( 31 | {this.pushShopDetail(this.props.shopIconData.detailurl)}}> 32 | 33 | 34 | 35 | {this.props.shopIconData.name} 36 | {this.props.shopIconData.showtext.text} 37 | 38 | 39 | ); 40 | }, 41 | 42 | 43 | 44 | //跳转到二级界面 45 | pushShopDetail(data){ 46 | 47 | this.props.popToShopCerten(data); 48 | // this.props.navigator.push({ 49 | // title:'会话', 50 | // component:HomeDetail 51 | // 52 | // }) 53 | 54 | }, 55 | 56 | }); 57 | 58 | 59 | const styles = StyleSheet.create({ 60 | container: { 61 | 62 | width:120, 63 | height:120 64 | 65 | }, 66 | 67 | imgStyle :{ 68 | width: 100, 69 | height: 80, 70 | // backgroundColor:'red', 71 | borderRadius:5, 72 | margin:5 73 | }, 74 | 75 | showtextStyle: { 76 | 77 | backgroundColor:'orange', 78 | color:'white', 79 | fontSize:12, 80 | // 81 | position:'absolute', 82 | left:5, 83 | top:60 84 | 85 | }, 86 | 87 | }); 88 | 89 | // 90 | module.exports = HomeShopIcon; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/DDHomeTopComCell.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/23. 3 | */ 4 | 5 | import React, { Component } from 'react'; 6 | import { 7 | AppRegistry, 8 | StyleSheet, 9 | Text, 10 | View, 11 | TouchableOpacity, 12 | Image 13 | } from 'react-native'; 14 | 15 | var Dimensions = require('Dimensions'); 16 | var screenW = Dimensions.get('window').width; 17 | 18 | 19 | 20 | var TopComCell = React.createClass({ 21 | 22 | getDefaultProps(){ 23 | return{ 24 | data : [], 25 | } 26 | }, 27 | 28 | 29 | render() { 30 | return ( 31 | alert('0')} style={styles.outViewStyle}> 32 | 33 | {/*左边*/} 34 | 35 | {this.props.data.title} 36 | {this.props.data.subTitle} 37 | 38 | {/*右边*/} 39 | 40 | 41 | 42 | ); 43 | } 44 | 45 | }); 46 | 47 | 48 | const styles = StyleSheet.create({ 49 | 50 | outViewStyle :{ 51 | 52 | width:screenW * 0.5 - 1, 53 | height: 64, 54 | marginBottom: 1, 55 | marginRight: 1, 56 | backgroundColor:'white' 57 | 58 | }, 59 | 60 | mainViewStyle:{ 61 | 62 | flexDirection:'row', 63 | justifyContent:'space-around', 64 | alignItems:'center', 65 | }, 66 | 67 | leftViewStyle :{ 68 | 69 | 70 | }, 71 | 72 | 73 | rightImageStyle :{ 74 | 75 | width:90, 76 | height:60, 77 | resizeMode:'contain', 78 | // backgroundColor:"blue" 79 | 80 | }, 81 | 82 | mainTitleStyle :{ 83 | 84 | fontSize:18, 85 | fontWeight:'bold', 86 | marginBottom:5, 87 | 88 | }, 89 | 90 | }); 91 | 92 | // 93 | module.exports = TopComCell; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/DDMiddleCommonView.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Created by douguangbin on 2016/12/27. 4 | */ 5 | 6 | 7 | 8 | 9 | import React, { Component } from 'react'; 10 | import { 11 | AppRegistry, 12 | StyleSheet, 13 | Text, 14 | View, 15 | Image, 16 | TouchableOpacity, 17 | } from 'react-native'; 18 | 19 | var Dimensions = require('Dimensions'); 20 | var width = Dimensions.get('window').width; 21 | 22 | 23 | 24 | var CommonView = React.createClass({ 25 | 26 | // 27 | getDefaultProps(){ 28 | return{ 29 | title:'', 30 | subTitle:'', 31 | rightIcon:'', 32 | titleColor:'', 33 | } 34 | }, 35 | 36 | 37 | render() { 38 | return ( 39 | 40 | alert('你大爷的')}> 41 | 42 | 43 | {/*左边*/} 44 | 45 | {this.props.title} 46 | {this.props.subTitle} 47 | 48 | {/*右边*/} 49 | 50 | 51 | 52 | 53 | 54 | ); 55 | } 56 | 57 | }); 58 | 59 | 60 | const styles = StyleSheet.create({ 61 | container: { 62 | backgroundColor: 'white', 63 | width:width * 0.5 - 1, 64 | height:59, 65 | flexDirection:'row', 66 | alignItems:'center', 67 | justifyContent:'space-around', 68 | marginBottom:1, 69 | marginRight:1 70 | 71 | }, 72 | 73 | titleStyle : { 74 | 75 | fontSize:18, 76 | fontWeight:'bold' 77 | 78 | }, 79 | 80 | subTitleStyle :{ 81 | 82 | color:'gray' 83 | }, 84 | 85 | 86 | }); 87 | 88 | // 89 | module.exports = CommonView; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/localData/DD_Home_D4.json: -------------------------------------------------------------------------------- 1 | { 2 | "stid": "720698155324449024", 3 | "data": [{ 4 | "position": 0, 5 | "typeface_color": "#ff9900", 6 | "id": 7486, 7 | "share": { 8 | "message": "1元能吃肯德基", 9 | "url": "http://i.meituan.com/firework/kfchanbao" 10 | }, 11 | "title": "1元能吃肯德基", 12 | "module": false, 13 | "maintitle": "1元肯德基", 14 | "tplurl": "imeituan://www.meituan.com/web?url=http://i.meituan.com/firework/kfchanbao", 15 | "type": 1, 16 | "imageurl": "http://p0.meituan.net/w.h/groupop/9aa35eed64db45aa33f9e74726c59d938450.png", 17 | "solds": 0, 18 | "deputytitle": "新用户专享" 19 | }, { 20 | "position": 0, 21 | "typeface_color": "#f6687d", 22 | "id": 15351, 23 | "share": { 24 | "message": "刷新颜值啦!领最高188元红包,更有疯狂立减ing~", 25 | "url": "http://i.meituan.com/firework/beautyactivity0328" 26 | }, 27 | "title": "4月开春大促", 28 | "module": false, 29 | "maintitle": "领21元红包", 30 | "tplurl": "imeituan://www.meituan.com/web?url=http://i.meituan.com/firework/beautyactivity0328", 31 | "type": 1, 32 | "imageurl": "http://p0.meituan.net/w.h/groupop/b8fb2def2c0063c9acabed6cbf1c65449452.png", 33 | "solds": 0, 34 | "deputytitle": "小长假美美哒" 35 | }, { 36 | "position": 0, 37 | "typeface_color": "#6bbd00", 38 | "id": 15444, 39 | "share": { 40 | "message": "", 41 | "url": "http://i.meituan.com/firework/160115xinyonghu?activity_id=611" 42 | }, 43 | "title": "外卖0401-0417刘莉君新客", 44 | "module": false, 45 | "maintitle": "新用户专享", 46 | "tplurl": "imeituan://www.meituan.com/web?url=http://i.meituan.com/firework/160115xinyonghu?activity_id=611", 47 | "type": 1, 48 | "imageurl": "http://p0.meituan.net/w.h/groupop/e1855577efd5280c905ab7a438b83f3d5000.png", 49 | "solds": 0, 50 | "deputytitle": "最高立减25元" 51 | }, { 52 | "position": 0, 53 | "typeface_color": "#06c1ae", 54 | "id": 15182, 55 | "share": { 56 | "message": "", 57 | "url": "http://mpay.meituan.com/resource/oneyuan/deal-list.html?entry=home#deal-list/" 58 | }, 59 | "title": "一元抢吧", 60 | "module": false, 61 | "maintitle": "一元抢吧", 62 | "tplurl": "imeituan://www.meituan.com/web?url=http://mpay.meituan.com/resource/oneyuan/deal-list.html?entry=home#deal-list/", 63 | "type": 1, 64 | "imageurl": "http://p1.meituan.net/w.h/groupop/286f56222bac7bfd7462af56a64ce4a59032.png", 65 | "solds": 0, 66 | "deputytitle": "爆品抢到手软" 67 | }], 68 | "server": { 69 | "time": 1459731016 70 | }, 71 | "paging": { 72 | "count": 5 73 | } 74 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/localData/DD_Home_D5.json: -------------------------------------------------------------------------------- 1 | { 2 | "count": 4, 3 | "data": [ 4 | { 5 | "detailurl": "imeituan://www.meituan.com/web/?url=http://i.meituan.com/shoppingmall/smDetail/4374715", 6 | "promotionIcon": "", 7 | "name": "正佳广场", 8 | "img": "http://p0.meituan.net/codeman/b4686ddc7270363868fcff917d3526cd37899.jpg", 9 | "showtext": { 10 | "text": "离我最近", 11 | "count": 84, 12 | "color": "" 13 | }, 14 | "longitude": 113.327086, 15 | "latitude": 23.131909, 16 | "smid": 4374715, 17 | "promotionText": "送福利 商品低至1.5折" 18 | }, 19 | { 20 | "detailurl": "imeituan://www.meituan.com/web/?url=http://i.meituan.com/shoppingmall/smDetail/50606658", 21 | "promotionIcon": "", 22 | "name": "白云万达广场", 23 | "img": "http://p0.meituan.net/codeman/c217fffcbf9b434844434a0acbdb434827837.jpg", 24 | "showtext": { 25 | "text": "55家优惠", 26 | "count": 55, 27 | "color": "" 28 | }, 29 | "longitude": 113.26605, 30 | "latitude": 23.17151, 31 | "smid": 50606658, 32 | "promotionText": "春来花开 满100最高减60" 33 | }, 34 | { 35 | "detailurl": "imeituan://www.meituan.com/web/?url=http://i.meituan.com/shoppingmall/smDetail/75813274", 36 | "promotionIcon": "", 37 | "name": "凯德广场●云尚", 38 | "img": "http://p0.meituan.net/codeman/2ad0711b7ffa9433bdc2577e7896082937607.jpg", 39 | "showtext": { 40 | "text": "61家优惠", 41 | "count": 61, 42 | "color": "" 43 | }, 44 | "longitude": 113.269668, 45 | "latitude": 23.1818, 46 | "smid": 75813274, 47 | "promotionText": "新春送福利 购物满额有好礼" 48 | }, 49 | { 50 | "detailurl": "imeituan://www.meituan.com/web/?url=http://i.meituan.com/shoppingmall/smDetail/41692498", 51 | "promotionIcon": "", 52 | "name": "来又来广场", 53 | "img": "http://p0.meituan.net/codeman/d675f4ad9b7ece9f0593db298beb082d31800.jpg", 54 | "showtext": { 55 | "text": "48家优惠", 56 | "count": 48, 57 | "color": "" 58 | }, 59 | "longitude": 113.232008, 60 | "latitude": 23.397758, 61 | "smid": 41692498, 62 | "promotionText": "48家品牌优惠中:瑞可爷爷的店每满30减5,全单9折(买单立享)" 63 | } 64 | ], 65 | "tips": "总共4家", 66 | "jumpto": "imeituan://www.meituan.com/web/?url=http://i.meituan.com/shoppingmall/smList?sid=@geodist:asc" 67 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/localData/TopMenu.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | [{ 4 | "title" : "美食", 5 | "image" : "ms" 6 | }, 7 | { 8 | "title" : "电影", 9 | "image" : "dy" 10 | }, 11 | { 12 | "title" : "酒店", 13 | "image" : "jd" 14 | }, 15 | { 16 | "title" : "休闲娱乐", 17 | "image" : "xxyl" 18 | }, 19 | { 20 | "title" : "外卖", 21 | "image" : "wm" 22 | }, 23 | { 24 | "title" : "自助餐", 25 | "image" : "zzc" 26 | }, 27 | { 28 | "title" : "KTV", 29 | "image" : "ktv" 30 | }, 31 | { 32 | "title" : "火车票机票", 33 | "image" : "hcpjp" 34 | }, 35 | { 36 | "title" : "丽人", 37 | "image" : "lr" 38 | }, 39 | { 40 | "title" : "周边游", 41 | "image" : "zby" 42 | } 43 | ], 44 | [ 45 | { 46 | "title" : "足疗按摩", 47 | "image" : "zlam" 48 | }, 49 | { 50 | "title" : "购物", 51 | "image" : "gw" 52 | }, 53 | { 54 | "title" : "今日新单", 55 | "image" : "jrxd" 56 | }, 57 | { 58 | "title" : "小吃快餐", 59 | "image" : "xckc" 60 | }, 61 | { 62 | "title" : "生活服务", 63 | "image" : "shfw" 64 | }, 65 | { 66 | "title" : "甜点饮品", 67 | "image" : "tdyp" 68 | }, 69 | { 70 | "title" : "美甲", 71 | "image" : "mj" 72 | }, 73 | { 74 | "title" : "景点门票", 75 | "image" : "jdmp" 76 | }, 77 | { 78 | "title" : "旅游", 79 | "image" : "ly" 80 | }, 81 | { 82 | "title" : "全部分类", 83 | "image" : "qbfl" 84 | }] 85 | ] 86 | } 87 | 88 | 89 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/localData/TopMiddle.json: -------------------------------------------------------------------------------- 1 | { 2 | "data":[ 3 | {"title" : "最高立减25", "subTitle" : "注册新会员 朱樱慧专享", "image" : "nsj"} 4 | ] 5 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDHome/localData/TopMiddleLeft.json: -------------------------------------------------------------------------------- 1 | { 2 | "dataLeft":[ 3 | {"img1" : "mdqg", "img2" : "yyms", "title" : "探路组碳烤鱼", "price": "¥9.5", "sale": "再减3元"} 4 | ], 5 | "dataRight":[ 6 | {"title" : "天天特价", "subTitle" : "特惠不打烊", "rightImage" : "tttj", "titleColor": "green"}, 7 | {"title" : "一元吃", "subTitle" : "一元吃美食", "rightImage" : "yyms", "titleColor": "red"} 8 | ] 9 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDMine/DDMineMiddleView.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/2. 3 | */ 4 | 5 | 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View, 13 | ScrollView, 14 | Image 15 | } from 'react-native'; 16 | 17 | var MineMiddleView = React.createClass({ 18 | 19 | getDefaultProps(){ 20 | 21 | return{ 22 | 23 | dataArray : [], //其他界面传进来的数据 24 | } 25 | 26 | }, 27 | 28 | render(){ 29 | 30 | return ( 31 | 32 | {this.renderItem()} 33 | ) 34 | 35 | }, 36 | 37 | // 38 | renderItem(){ 39 | 40 | var itemArray = []; 41 | 42 | for(var i = 0; i < this.props.dataArray.length; i++){ 43 | 44 | var item = this.props.dataArray[i]; 45 | 46 | itemArray.push( 47 | 48 | 49 | {item.name} 50 | 51 | ) 52 | 53 | } 54 | 55 | return itemArray; 56 | 57 | }, 58 | 59 | }); 60 | 61 | 62 | var styles = StyleSheet.create({ 63 | 64 | viewStyle: { 65 | 66 | flexDirection:'row', 67 | backgroundColor:'white', 68 | justifyContent:'space-around', 69 | paddingTop:8, 70 | paddingBottom:8 71 | 72 | }, 73 | 74 | imageStyle: { 75 | 76 | width: 40, 77 | height: 28 78 | 79 | }, 80 | 81 | inerViewStyle: { 82 | 83 | justifyContent:'center', 84 | alignItems:'center' 85 | 86 | } 87 | 88 | 89 | 90 | }); 91 | 92 | // 93 | module.exports = MineMiddleView; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDMine/DDMineheaderBottomView.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/8. 3 | */ 4 | 5 | import React, { Component } from 'react'; 6 | import { 7 | AppRegistry, 8 | StyleSheet, 9 | Text, 10 | View, 11 | TouchableOpacity, 12 | Image, 13 | Platform 14 | } from 'react-native'; 15 | 16 | 17 | //获取当前设备的宽度 18 | var Dimensions = require('Dimensions'); 19 | var screenWidth = Dimensions.get('window').width; 20 | 21 | 22 | 23 | 24 | var BottomView = React.createClass({ 25 | 26 | getDefaultProps(){ 27 | 28 | return{ 29 | 30 | dataArr:[], 31 | } 32 | 33 | }, 34 | 35 | render(){ 36 | 37 | return( 38 | 39 | {this.renderItem()} 40 | ) 41 | }, 42 | 43 | renderItem(){ 44 | // 利用数组返回 45 | var itemArr = []; 46 | 47 | for (var i = 0; i < this.props.dataArr.length; i++){ 48 | 49 | var item = this.props.dataArr[i]; 50 | 51 | itemArr.push( 52 | 53 | alert('点你大爷的啊')}> 54 | 55 | {item.number} 56 | {item.name} 57 | 58 | 59 | 60 | ); 61 | 62 | } 63 | return itemArr; 64 | } 65 | 66 | 67 | 68 | 69 | }); 70 | 71 | const styles = StyleSheet.create({ 72 | 73 | viewStyle: { 74 | 75 | flexDirection: 'row', 76 | backgroundColor:'rgba(255,255,255,0.3)', 77 | height: 44, 78 | width:screenWidth, 79 | 80 | position:'absolute', 81 | bottom: 0, 82 | 83 | alignItems: 'center' 84 | 85 | 86 | }, 87 | 88 | innerViewStyle: { 89 | // 这里这个 小技巧 一定要记住 很实用的 技巧 90 | width: screenWidth / 3.0 + 1, 91 | 92 | alignItems:'center', 93 | 94 | justifyContent: 'center', 95 | 96 | borderRightWidth: 1, 97 | borderRightColor:'white' 98 | 99 | }, 100 | 101 | 102 | }); 103 | 104 | module.exports = BottomView; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDMine/DDMineheaderTopView.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/8. 3 | */ 4 | 5 | import React, { Component } from 'react'; 6 | import { 7 | AppRegistry, 8 | StyleSheet, 9 | Text, 10 | View, 11 | TouchableOpacity, 12 | Image, 13 | Platform 14 | } from 'react-native'; 15 | 16 | 17 | //获取当前设备的宽度 18 | var Dimensions = require('Dimensions'); 19 | var screenWidth = Dimensions.get('window').width; 20 | 21 | 22 | 23 | var TopView = React.createClass({ 24 | 25 | 26 | getDefaultProps(){ 27 | return{ 28 | leftIcon : null, 29 | title : null, 30 | rankImage : null 31 | 32 | } 33 | 34 | }, 35 | 36 | 37 | render(){ 38 | 39 | return( 40 | 41 | 42 | {/*左边*/} 43 | 44 | {/*中间*/} 45 | 46 | {this.props.title} 47 | 48 | 49 | {/*右边*/} 50 | 51 | 52 | 53 | 54 | ) 55 | 56 | 57 | }, 58 | 59 | 60 | 61 | 62 | 63 | }); 64 | 65 | const styles = StyleSheet.create({ 66 | 67 | 68 | viewStyle : { 69 | 70 | flexDirection: 'row', 71 | 72 | alignItems: 'center', 73 | 74 | justifyContent:'space-around', 75 | 76 | marginTop: 50 77 | 78 | 79 | }, 80 | 81 | leftIconStyle : { 82 | 83 | width:60, 84 | height:60, 85 | borderRadius:30 86 | 87 | 88 | }, 89 | 90 | middleViewStyle : { 91 | 92 | flexDirection:'row', 93 | 94 | width:screenWidth * 0.7 95 | }, 96 | 97 | rankImageStyle : { 98 | 99 | width:17, 100 | height:18, 101 | marginLeft:3 102 | }, 103 | 104 | 105 | 106 | }); 107 | 108 | 109 | module.exports = TopView; 110 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDMine/Data/MiddleData.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | 4 | "topData": 5 | [ 6 | {"icon":"order1", "name":"待付款"}, 7 | {"icon":"order2", "name":"待使用"}, 8 | {"icon":"order3", "name":"待评价"}, 9 | {"icon":"order4", "name":"退款/售后"} 10 | 11 | ], 12 | 13 | "bottomData": 14 | [ 15 | {"number":"100", "name":"豆豆金币"}, 16 | {"number":"12", "name":"评价"}, 17 | {"number":"50", "name":"收藏"} 18 | 19 | ] 20 | 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDShop/DDCommonNavBar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by douguangbin on 2017/1/24. 3 | */ 4 | 5 | import React, { Component } from 'react'; 6 | import { 7 | AppRegistry, 8 | StyleSheet, 9 | Text, 10 | View, 11 | WebView, 12 | TouchableOpacity, 13 | Image 14 | } from 'react-native'; 15 | 16 | 17 | 18 | var CommonNav = React.createClass({ 19 | 20 | getDefaultProps(){ 21 | return{ 22 | leftIcon: '', 23 | navTitle: '', 24 | rightIcon: '' 25 | } 26 | }, 27 | 28 | render() { 29 | return ( 30 | 31 | 32 | 33 | 34 | 35 | 36 | {this.props.navTitle} 37 | 38 | 39 | 40 | 41 | ); 42 | } 43 | 44 | }); 45 | 46 | 47 | const styles = StyleSheet.create({ 48 | container: { 49 | height:64, 50 | backgroundColor:'rgba(251, 73, 8, 1.0)', 51 | borderBottomColor:'#dddddd', 52 | borderBottomWidth:1, 53 | 54 | // 55 | flexDirection:'row', 56 | alignItems:'center', 57 | justifyContent:'space-between', 58 | 59 | paddingTop:10 60 | }, 61 | 62 | // 63 | navIconStyle: { 64 | 65 | width:25, 66 | height:25 67 | 68 | }, 69 | 70 | // 71 | titleStyle: { 72 | 73 | color:'white', 74 | fontSize:18, 75 | fontWeight:'bold' 76 | 77 | } 78 | 79 | 80 | 81 | 82 | }); 83 | 84 | 85 | 86 | // 87 | module.exports = CommonNav; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/Compoment/DDShop/DDShop.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Created by douguangbin on 2016/12/27. 4 | */ 5 | 6 | 7 | 8 | 9 | import React, { Component } from 'react'; 10 | import { 11 | AppRegistry, 12 | StyleSheet, 13 | Text, 14 | View, 15 | WebView 16 | } from 'react-native'; 17 | 18 | var CommonNavBar = require('./DDCommonNavBar'); 19 | 20 | var Shop = React.createClass({ 21 | 22 | getDefaultProps(){ 23 | 24 | return{ 25 | web_url:"http://i.meituan.com/topic/mingdian?ci=1&f=iphone&msid=48E2B810-805D-4821-9CDD-D5C9E01BC98A2015-07-02-16-25124&token=p19ukJltGhla4y5Jryb1jgCdKjsAAAAAsgAAADHFD3UYGxaY2FlFPQXQj2wCyCrhhn7VVB-KpG_U3-clHlvsLM8JRrnZK35y8UU3DQ&userid=10086&utm_campaign=AgroupBgroupD100Fab_chunceshishuju__a__a___b1junglehomepagecatesort__b__leftflow___ab_gxhceshi__nostrategy__leftflow___ab_gxhceshi0202__b__a___ab_pindaochangsha__a__leftflow___ab_xinkeceshi__b__leftflow___ab_gxtest__gd__leftflow___ab_waimaiwending__a__a___ab_gxh_82__nostrategy__leftflow___i_group_5_2_deallist_poitype__d__d___ab_b_food_57_purepoilist_extinfo__a__a___ab_pindaoshenyang__a__leftflow___ab_pindaoquxincelue0630__b__b1___a20141120nanning__m1__leftflow___ab_i_group_5_3_poidetaildeallist__a__b___ab_waimaizhanshi__b__b1___ab_i_group_5_5_onsite__b__b___ab_i_group_5_6_searchkuang__a__leftflowGhomepage_bargainmiddle_30311731&utm_content=4B8C0B46F5B0527D55EA292904FD7E12E48FB7BEA8DF50BFE7828AF7F20BB08D&utm_medium=iphone&utm_source=AppStore&utm_term=5.7&uuid=4B8C0B46F5B0527D55EA292904FD7E12E48FB7BEA8DF50BFE7828AF7F20BB08D&version_name=5.7&lat=23.12005&lng=113.3076" 26 | } 27 | 28 | }, 29 | 30 | 31 | render() { 32 | return ( 33 | 34 | 35 | {/**/} 36 | 41 | {/**/} 42 | 48 | 49 | 50 | 51 | 52 | ); 53 | } 54 | 55 | }); 56 | 57 | 58 | const styles = StyleSheet.create({ 59 | container: { 60 | flex: 1, 61 | backgroundColor: 'blue', 62 | }, 63 | 64 | }); 65 | 66 | 67 | 68 | // 69 | module.exports = Shop; -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.dtuanbuy', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.dtuanbuy', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/java/com/dtuanbuy/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.dtuanbuy; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "DTuanBuy"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/java/com/dtuanbuy/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.dtuanbuy; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactInstanceManager; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | import com.facebook.soloader.SoLoader; 12 | 13 | import java.util.Arrays; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 19 | @Override 20 | protected boolean getUseDeveloperSupport() { 21 | return BuildConfig.DEBUG; 22 | } 23 | 24 | @Override 25 | protected List getPackages() { 26 | return Arrays.asList( 27 | new MainReactPackage() 28 | ); 29 | } 30 | }; 31 | 32 | @Override 33 | public ReactNativeHost getReactNativeHost() { 34 | return mReactNativeHost; 35 | } 36 | 37 | @Override 38 | public void onCreate() { 39 | super.onCreate(); 40 | SoLoader.init(this, /* native exopackage */ false); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DTuanBuy 3 | 4 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 6 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'DTuanBuy' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/index.android.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | 15 | export default class DTuanBuy extends Component { 16 | render() { 17 | return ( 18 | 19 | 20 | Welcome to React Native! 21 | 22 | 23 | To get started, edit index.android.js 24 | 25 | 26 | Double tap R on your keyboard to reload,{'\n'} 27 | Shake or press menu button for dev menu 28 | 29 | 30 | ); 31 | } 32 | } 33 | 34 | const styles = StyleSheet.create({ 35 | container: { 36 | flex: 1, 37 | justifyContent: 'center', 38 | alignItems: 'center', 39 | backgroundColor: '#F5FCFF', 40 | }, 41 | welcome: { 42 | fontSize: 20, 43 | textAlign: 'center', 44 | margin: 10, 45 | }, 46 | instructions: { 47 | textAlign: 'center', 48 | color: '#333333', 49 | marginBottom: 5, 50 | }, 51 | }); 52 | 53 | AppRegistry.registerComponent('DTuanBuy', () => DTuanBuy); 54 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/index.ios.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Sample React Native App 3 | * https://github.com/facebook/react-native 4 | * @flow 5 | */ 6 | 7 | import React, { Component } from 'react'; 8 | import { 9 | AppRegistry, 10 | StyleSheet, 11 | Text, 12 | View 13 | } from 'react-native'; 14 | 15 | //导入外部组件 16 | var Main = require('./Compoment/DDMain/DDMain'); 17 | // var Home = require('./Compoment/DDHome/DDHome'); 18 | // var Mine = require('./Compoment/DDMine/DDMine'); 19 | // var More = require('./Compoment/DDMore/DDMore'); 20 | 21 | var DTuanBuy = React.createClass({ 22 | 23 | render() { 24 | return ( 25 | 26 |
27 | ); 28 | } 29 | 30 | 31 | }); 32 | 33 | const styles = StyleSheet.create({ 34 | container: { 35 | flex: 1, 36 | justifyContent: 'center', 37 | alignItems: 'center', 38 | backgroundColor: '#F5FCFF', 39 | }, 40 | welcome: { 41 | fontSize: 20, 42 | textAlign: 'center', 43 | margin: 10, 44 | }, 45 | instructions: { 46 | textAlign: 'center', 47 | color: '#333333', 48 | marginBottom: 5, 49 | }, 50 | }); 51 | 52 | AppRegistry.registerComponent('DTuanBuy', () => DTuanBuy); 53 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import "RCTBundleURLProvider.h" 13 | #import "RCTRootView.h" 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | //顶部状态栏的样式 22 | [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; 23 | 24 | 25 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 26 | 27 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 28 | moduleName:@"DTuanBuy" 29 | initialProperties:nil 30 | launchOptions:launchOptions]; 31 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 32 | 33 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 34 | UIViewController *rootViewController = [UIViewController new]; 35 | rootViewController.view = rootView; 36 | self.window.rootViewController = rootViewController; 37 | [self.window makeKeyAndVisible]; 38 | return YES; 39 | } 40 | 41 | @end 42 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "1x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "2x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "29x29", 26 | "scale" : "3x" 27 | }, 28 | { 29 | "size" : "40x40", 30 | "idiom" : "iphone", 31 | "filename" : "Icon-60@2x.png", 32 | "scale" : "2x" 33 | }, 34 | { 35 | "size" : "40x40", 36 | "idiom" : "iphone", 37 | "filename" : "Icon-60@3x.png", 38 | "scale" : "3x" 39 | }, 40 | { 41 | "size" : "57x57", 42 | "idiom" : "iphone", 43 | "filename" : "Icon.png", 44 | "scale" : "1x" 45 | }, 46 | { 47 | "size" : "57x57", 48 | "idiom" : "iphone", 49 | "filename" : "Icon@2x.png", 50 | "scale" : "2x" 51 | }, 52 | { 53 | "idiom" : "iphone", 54 | "size" : "60x60", 55 | "scale" : "2x" 56 | }, 57 | { 58 | "idiom" : "iphone", 59 | "size" : "60x60", 60 | "scale" : "3x" 61 | } 62 | ], 63 | "info" : { 64 | "version" : 1, 65 | "author" : "xcode" 66 | } 67 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/bg_merchant_photo_placeholder_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bg_merchant_photo_placeholder_big@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/bg_merchant_photo_placeholder_big.imageset/bg_merchant_photo_placeholder_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/bg_merchant_photo_placeholder_big.imageset/bg_merchant_photo_placeholder_big@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/bg_merchant_photo_placeholder_small.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bg_merchant_photo_placeholder_small@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/bg_merchant_photo_placeholder_small.imageset/bg_merchant_photo_placeholder_small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/bg_merchant_photo_placeholder_small.imageset/bg_merchant_photo_placeholder_small@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_arrow_selected_yellow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_arrow_selected_yellow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_arrow_selected_yellow.imageset/icon_arrow_selected_yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_arrow_selected_yellow.imageset/icon_arrow_selected_yellow@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_back_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_camera_back_highlighted@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_back_highlighted.imageset/icon_camera_back_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_back_highlighted.imageset/icon_camera_back_highlighted@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_back_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_camera_back_normal@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_back_normal.imageset/icon_camera_back_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_back_normal.imageset/icon_camera_back_normal@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_disabled.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_camera_finish_disabled@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_disabled.imageset/icon_camera_finish_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_disabled.imageset/icon_camera_finish_disabled@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_camera_finish_highlighted@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_highlighted.imageset/icon_camera_finish_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_highlighted.imageset/icon_camera_finish_highlighted@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_camera_finish_normal@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_normal.imageset/icon_camera_finish_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_camera_finish_normal.imageset/icon_camera_finish_normal@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_cell_rightArrow@2x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow.imageset/icon_cell_rightArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow.imageset/icon_cell_rightArrow@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_disabled.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_cell_rightArrow_disabled.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_disabled.imageset/icon_cell_rightArrow_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_disabled.imageset/icon_cell_rightArrow_disabled.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_orange.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_cell_rightArrow_orange@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_orange.imageset/icon_cell_rightArrow_orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_orange.imageset/icon_cell_rightArrow_orange@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_cell_rightArrow_selected.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_selected.imageset/icon_cell_rightArrow_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/CommonImage/icon_cell_rightArrow_selected.imageset/icon_cell_rightArrow_selected.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/avatar_enterprise_vip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "avatar_enterprise_vip@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "avatar_enterprise_vip@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/avatar_enterprise_vip.imageset/avatar_enterprise_vip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/avatar_enterprise_vip.imageset/avatar_enterprise_vip@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/avatar_enterprise_vip.imageset/avatar_enterprise_vip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/avatar_enterprise_vip.imageset/avatar_enterprise_vip@3x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_ guarantee.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_deal_ guarantee@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_ guarantee.imageset/icon_deal_ guarantee@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_ guarantee.imageset/icon_deal_ guarantee@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_campaign.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_deal_campaign@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_campaign.imageset/icon_deal_campaign@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_campaign.imageset/icon_deal_campaign@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_exclusive-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_deal_exclusive@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_exclusive-1.imageset/icon_deal_exclusive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_exclusive-1.imageset/icon_deal_exclusive@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_exclusive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_deal_exclusive@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_exclusive.imageset/icon_deal_exclusive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_exclusive.imageset/icon_deal_exclusive@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_mainpush.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_deal_mainpush@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_mainpush.imageset/icon_deal_mainpush@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_mainpush.imageset/icon_deal_mainpush@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_mark_collected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_deal_mark_collected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_mark_collected.imageset/icon_deal_mark_collected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_mark_collected.imageset/icon_deal_mark_collected@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_nobooking.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_deal_nobooking@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_nobooking.imageset/icon_deal_nobooking@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_deal_nobooking.imageset/icon_deal_nobooking@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_defaultimage_shoppingmall_merchant.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_defaultimage_shoppingmall_merchant@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_defaultimage_shoppingmall_merchant.imageset/icon_defaultimage_shoppingmall_merchant@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_defaultimage_shoppingmall_merchant.imageset/icon_defaultimage_shoppingmall_merchant@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_CouponCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_CouponCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_CouponCategory.imageset/icon_homepage_CouponCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_CouponCategory.imageset/icon_homepage_CouponCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_KTVCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_KTVCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_KTVCategory.imageset/icon_homepage_KTVCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_KTVCategory.imageset/icon_homepage_KTVCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_MTLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_MTLogo.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_MTLogo.imageset/icon_homepage_MTLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_MTLogo.imageset/icon_homepage_MTLogo.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_aroundjourneyCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_aroundjourneyCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_aroundjourneyCategory.imageset/icon_homepage_aroundjourneyCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_aroundjourneyCategory.imageset/icon_homepage_aroundjourneyCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_beautyCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_beautyCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_beautyCategory.imageset/icon_homepage_beautyCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_beautyCategory.imageset/icon_homepage_beautyCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_cakeCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_cakeCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_cakeCategory.imageset/icon_homepage_cakeCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_cakeCategory.imageset/icon_homepage_cakeCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_categoryLine.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_categoryLine.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_categoryLine.imageset/icon_homepage_categoryLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_categoryLine.imageset/icon_homepage_categoryLine.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_category_page_default.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_category_page_default@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_category_page_default.imageset/icon_homepage_category_page_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_category_page_default.imageset/icon_homepage_category_page_default@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_category_page_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_category_page_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_category_page_selected.imageset/icon_homepage_category_page_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_category_page_selected.imageset/icon_homepage_category_page_selected@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_dailyNewDealCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_dailyNewDealCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_dailyNewDealCategory.imageset/icon_homepage_dailyNewDealCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_dailyNewDealCategory.imageset/icon_homepage_dailyNewDealCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_default.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_default.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_default.imageset/icon_homepage_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_default.imageset/icon_homepage_default.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_down_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_downArrow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_down_arrow.imageset/icon_homepage_downArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_down_arrow.imageset/icon_homepage_downArrow@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_entertainmentCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_entertainmentCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_entertainmentCategory.imageset/icon_homepage_entertainmentCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_entertainmentCategory.imageset/icon_homepage_entertainmentCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_fastfoodCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_fastfoodCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_fastfoodCategory.imageset/icon_homepage_fastfoodCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_fastfoodCategory.imageset/icon_homepage_fastfoodCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_foodCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_foodCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_foodCategory.imageset/icon_homepage_foodCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_foodCategory.imageset/icon_homepage_foodCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_foottreatCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_foottreatCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_foottreatCategory.imageset/icon_homepage_foottreatCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_foottreatCategory.imageset/icon_homepage_foottreatCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_guess_default.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_guess_default.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_guess_default.imageset/icon_homepage_guess_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_guess_default.imageset/icon_homepage_guess_default.jpg -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_haircutCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_haircutCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_haircutCategory.imageset/icon_homepage_haircutCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_haircutCategory.imageset/icon_homepage_haircutCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_hotCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotCategory.imageset/icon_homepage_hotCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotCategory.imageset/icon_homepage_hotCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotDealArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_hotDealArrow.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotDealArrow.imageset/icon_homepage_hotDealArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotDealArrow.imageset/icon_homepage_hotDealArrow.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotTopicArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_hotTopicArrow.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotTopicArrow.imageset/icon_homepage_hotTopicArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotTopicArrow.imageset/icon_homepage_hotTopicArrow.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotelCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_hotelCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotelCategory.imageset/icon_homepage_hotelCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_hotelCategory.imageset/icon_homepage_hotelCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_lifeServiceCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_lifeServiceCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_lifeServiceCategory.imageset/icon_homepage_lifeServiceCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_lifeServiceCategory.imageset/icon_homepage_lifeServiceCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_lotteryCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_lotteryCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_lotteryCategory.imageset/icon_homepage_lotteryCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_lotteryCategory.imageset/icon_homepage_lotteryCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_map.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map.imageset/icon_homepage_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map.imageset/icon_homepage_map.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_old.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_map_old.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_old.imageset/icon_homepage_map_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_old.imageset/icon_homepage_map_old.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_map_selected.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_selected.imageset/icon_homepage_map_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_selected.imageset/icon_homepage_map_selected.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_selected_old.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_map_selected_old.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_selected_old.imageset/icon_homepage_map_selected_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_map_selected_old.imageset/icon_homepage_map_selected_old.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_message_pressed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_message_pressed@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_message_pressed.imageset/icon_homepage_message_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_message_pressed.imageset/icon_homepage_message_pressed@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_moreCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_moreCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_moreCategory.imageset/icon_homepage_moreCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_moreCategory.imageset/icon_homepage_moreCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_movieCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_movieCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_movieCategory.imageset/icon_homepage_movieCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_movieCategory.imageset/icon_homepage_movieCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_navArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_navArrow.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_navArrow.imageset/icon_homepage_navArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_navArrow.imageset/icon_homepage_navArrow.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_search.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_search.imageset/icon_homepage_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_search.imageset/icon_homepage_search.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_shadowLine.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_shadowLine.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_shadowLine.imageset/icon_homepage_shadowLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_shadowLine.imageset/icon_homepage_shadowLine.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_shoppingCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_shoppingCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_shoppingCategory.imageset/icon_homepage_shoppingCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_shoppingCategory.imageset/icon_homepage_shoppingCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_takeoutCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_takeoutCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_takeoutCategory.imageset/icon_homepage_takeoutCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_takeoutCategory.imageset/icon_homepage_takeoutCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_travellingCategory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_homepage_travellingCategory.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_travellingCategory.imageset/icon_homepage_travellingCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_travellingCategory.imageset/icon_homepage_travellingCategory.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_upArrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_upArrow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_upArrow.imageset/icon_homepage_upArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/icon_homepage_upArrow.imageset/icon_homepage_upArrow@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/mdqg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "mdqg@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "mdqg@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/mdqg.imageset/mdqg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/mdqg.imageset/mdqg@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/mdqg.imageset/mdqg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/mdqg.imageset/mdqg@3x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/nsj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "nsj@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/nsj.imageset/nsj@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/nsj.imageset/nsj@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/scale.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "scale@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/scale.imageset/scale@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/scale.imageset/scale@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/tttj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tttj@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/tttj.imageset/tttj@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/tttj.imageset/tttj@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/yyms.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "yyms@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/yyms.imageset/yyms@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Home/yyms.imageset/yyms@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_air.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hot_air.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_air.imageset/hot_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_air.imageset/hot_air.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_car.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hot_car.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_car.imageset/hot_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_car.imageset/hot_car.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_eat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hot_eat.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_eat.imageset/hot_eat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_eat.imageset/hot_eat.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_play.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hot_play.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_play.imageset/hot_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_play.imageset/hot_play.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_wash.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hot_wash.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_wash.imageset/hot_wash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_wash.imageset/hot_wash.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_water.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hot_water.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_water.imageset/hot_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/hot_water.imageset/hot_water.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/icon_hot.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_hot.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/icon_hot.imageset/icon_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/HomeHot/icon_hot.imageset/icon_hot.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "scale" : "1x" 8 | }, 9 | { 10 | "orientation" : "portrait", 11 | "idiom" : "iphone", 12 | "extent" : "full-screen", 13 | "scale" : "2x" 14 | }, 15 | { 16 | "orientation" : "portrait", 17 | "idiom" : "iphone", 18 | "extent" : "full-screen", 19 | "subtype" : "retina4", 20 | "scale" : "2x" 21 | }, 22 | { 23 | "extent" : "full-screen", 24 | "idiom" : "iphone", 25 | "subtype" : "736h", 26 | "filename" : "LaunchImage-800-Portrait-736h@3x.png", 27 | "minimum-system-version" : "8.0", 28 | "orientation" : "portrait", 29 | "scale" : "3x" 30 | }, 31 | { 32 | "orientation" : "landscape", 33 | "idiom" : "iphone", 34 | "extent" : "full-screen", 35 | "minimum-system-version" : "8.0", 36 | "subtype" : "736h", 37 | "scale" : "3x" 38 | }, 39 | { 40 | "extent" : "full-screen", 41 | "idiom" : "iphone", 42 | "subtype" : "667h", 43 | "filename" : "LaunchImage-800-667h@2x.png", 44 | "minimum-system-version" : "8.0", 45 | "orientation" : "portrait", 46 | "scale" : "2x" 47 | }, 48 | { 49 | "orientation" : "portrait", 50 | "idiom" : "iphone", 51 | "filename" : "LaunchImage-700@2x.png", 52 | "extent" : "full-screen", 53 | "minimum-system-version" : "7.0", 54 | "scale" : "2x" 55 | }, 56 | { 57 | "extent" : "full-screen", 58 | "idiom" : "iphone", 59 | "subtype" : "retina4", 60 | "filename" : "LaunchImage-700-568h@2x.png", 61 | "minimum-system-version" : "7.0", 62 | "orientation" : "portrait", 63 | "scale" : "2x" 64 | } 65 | ], 66 | "info" : { 67 | "version" : 1, 68 | "author" : "xcode" 69 | } 70 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/LaunchImage-700-568h@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/LaunchImage-700@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/LaunchImage-700@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/00x.imageset/00x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/00x.imageset/00x.jpg -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/00x.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "00x.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_grassroot.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "avatar_grassroot@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "avatar_grassroot@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_grassroot.imageset/avatar_grassroot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_grassroot.imageset/avatar_grassroot@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_grassroot.imageset/avatar_grassroot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_grassroot.imageset/avatar_grassroot@3x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vgirl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "avatar_vgirl@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "avatar_vgirl@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vgirl.imageset/avatar_vgirl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vgirl.imageset/avatar_vgirl@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vgirl.imageset/avatar_vgirl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vgirl.imageset/avatar_vgirl@3x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "avatar_vip@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "avatar_vip@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vip.imageset/avatar_vip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vip.imageset/avatar_vip@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vip.imageset/avatar_vip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/avatar_vip.imageset/avatar_vip@3x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/card.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "card@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/card.imageset/card@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/card.imageset/card@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/collect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "collect@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/collect.imageset/collect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/collect.imageset/collect@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/draft.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "draft@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/draft.imageset/draft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/draft.imageset/draft@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "like@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/like.imageset/like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/like.imageset/like@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/me_new.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "me_new@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/me_new.imageset/me_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/me_new.imageset/me_new@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/new_friend.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "new_friend@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/new_friend.imageset/new_friend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/new_friend.imageset/new_friend@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "order1@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order1.imageset/order1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order1.imageset/order1@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "order2@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order2.imageset/order2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order2.imageset/order2@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "order3@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order3.imageset/order3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order3.imageset/order3@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "order4@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order4.imageset/order4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/order4.imageset/order4@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/pay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "pay@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/pay.imageset/pay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Me/pay.imageset/pay@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_homepage_message.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_message@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_homepage_message.imageset/icon_homepage_message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_homepage_message.imageset/icon_homepage_message@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_homepage_scan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_homepage_scan@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_homepage_scan.imageset/icon_homepage_scan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_homepage_scan.imageset/icon_homepage_scan@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_mine_setting.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_mine_setting@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_mine_setting.imageset/icon_mine_setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_mine_setting.imageset/icon_mine_setting@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_shop_local.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_shop_local@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_shop_local.imageset/icon_shop_local@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_shop_local.imageset/icon_shop_local@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_shop_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_shop_search@2x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_shop_search.imageset/icon_shop_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/icon_shop_search.imageset/icon_shop_search@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/navigationbar_arrow_up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "navigationbar_arrow_up@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/navigationbar_arrow_up.imageset/navigationbar_arrow_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Nav/navigationbar_arrow_up.imageset/navigationbar_arrow_up@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/kd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kd.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/kd.imageset/kd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/kd.imageset/kd.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/lyl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lyl.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/lyl.imageset/lyl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/lyl.imageset/lyl.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/wd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wd.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/wd.imageset/wd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/wd.imageset/wd.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/zjgc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zjgc.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/zjgc.imageset/zjgc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Shop/zjgc.imageset/zjgc.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Slider/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Slider/bg_open_point_trip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bg_open_point_trip@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Slider/bg_open_point_trip.imageset/bg_open_point_trip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Slider/bg_open_point_trip.imageset/bg_open_point_trip@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Slider/bg_open_point_trip_568h.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bg_open_point_trip_568h@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Slider/bg_open_point_trip_568h.imageset/bg_open_point_trip_568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/Slider/bg_open_point_trip_568h.imageset/bg_open_point_trip_568h@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_homepage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_tabbar_homepage@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_homepage.imageset/icon_tabbar_homepage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_homepage.imageset/icon_tabbar_homepage@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_homepage_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_tabbar_homepage_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_homepage_selected.imageset/icon_tabbar_homepage_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_homepage_selected.imageset/icon_tabbar_homepage_selected@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_merchant_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_tabbar_merchant_normal@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_merchant_normal.imageset/icon_tabbar_merchant_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_merchant_normal.imageset/icon_tabbar_merchant_normal@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_merchant_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_tabbar_merchant_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_merchant_selected.imageset/icon_tabbar_merchant_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_merchant_selected.imageset/icon_tabbar_merchant_selected@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_mine.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_tabbar_mine@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_mine.imageset/icon_tabbar_mine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_mine.imageset/icon_tabbar_mine@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_mine_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_tabbar_mine_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_mine_selected.imageset/icon_tabbar_mine_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_mine_selected.imageset/icon_tabbar_mine_selected@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_misc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_tabbar_misc@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_misc.imageset/icon_tabbar_misc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_misc.imageset/icon_tabbar_misc@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_misc_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_tabbar_misc_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_misc_selected.imageset/icon_tabbar_misc_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/TabBar/icon_tabbar_misc_selected.imageset/icon_tabbar_misc_selected@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/cnxh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "cnxh@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/cnxh.imageset/cnxh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/cnxh.imageset/cnxh@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/dy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "dy@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/dy.imageset/dy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/dy.imageset/dy@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/gw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "gw@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/gw.imageset/gw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/gw.imageset/gw@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/gwzx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "gwzx@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/gwzx.imageset/gwzx@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/gwzx.imageset/gwzx@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/hcpjp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "hcpjp@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/hcpjp.imageset/hcpjp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/hcpjp.imageset/hcpjp@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/home_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "home_arrow@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/home_arrow.imageset/home_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/home_arrow.imageset/home_arrow@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_cinema_presale.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_cinema_presale@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_cinema_presale.imageset/icon_cinema_presale@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_cinema_presale.imageset/icon_cinema_presale@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_deal_nearest.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_deal_nearest.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_deal_nearest.imageset/icon_deal_nearest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_deal_nearest.imageset/icon_deal_nearest.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_movie_3D_IMAX.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "icon_movie_3D_IMAX@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_movie_3D_IMAX.imageset/icon_movie_3D_IMAX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/icon_movie_3D_IMAX.imageset/icon_movie_3D_IMAX@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "jd@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jd.imageset/jd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jd.imageset/jd@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jdmp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "jdmp@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jdmp.imageset/jdmp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jdmp.imageset/jdmp@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jrxd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "jrxd@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jrxd.imageset/jrxd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/jrxd.imageset/jrxd@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ktv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ktv@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ktv.imageset/ktv@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ktv.imageset/ktv@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/lr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "lr@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/lr.imageset/lr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/lr.imageset/lr@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ly.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ly@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ly.imageset/ly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ly.imageset/ly@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/mj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "mj@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/mj.imageset/mj@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/mj.imageset/mj@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ms.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ms@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ms.imageset/ms@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/ms.imageset/ms@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/qbfl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "qbfl@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/qbfl.imageset/qbfl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/qbfl.imageset/qbfl@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/rm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "rm@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/rm.imageset/rm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/rm.imageset/rm@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/shfw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "shfw@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/shfw.imageset/shfw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/shfw.imageset/shfw@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/tdyp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tdyp@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/tdyp.imageset/tdyp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/tdyp.imageset/tdyp@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/wm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "wm@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/wm.imageset/wm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/wm.imageset/wm@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/xckc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "xckc@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/xckc.imageset/xckc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/xckc.imageset/xckc@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/xxyl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "xxyl@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/xxyl.imageset/xxyl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/xxyl.imageset/xxyl@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zby.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "zby@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zby.imageset/zby@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zby.imageset/zby@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zlam.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "zlam@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zlam.imageset/zlam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zlam.imageset/zlam@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zzc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "zzc@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zzc.imageset/zzc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcdoudou/react-native-Demo-ios-/f35818b92f6af270a4932bcf64f27a29f90bf91e/简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Images.xcassets/homeMenu/zzc.imageset/zzc@2x.png -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | 豆豆超级团购 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | NSAppTransportSecurity 26 | 27 | NSAllowsArbitraryLoads 28 | 29 | 30 | NSLocationWhenInUseUsageDescription 31 | 32 | UIRequiredDeviceCapabilities 33 | 34 | armv7 35 | 36 | UISupportedInterfaceOrientations 37 | 38 | UIInterfaceOrientationPortrait 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuy/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuyTests/DTuanBuyTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import "RCTLog.h" 14 | #import "RCTRootView.h" 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface DTuanBuyTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation DTuanBuyTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/ios/DTuanBuyTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /简仿美团小Demo-react - native/DTuanBuy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DTuanBuy", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "react": "15.4.1", 11 | "react-native": "0.39.2", 12 | "react-native-tab-navigator": "^0.3.3" 13 | }, 14 | "devDependencies": { 15 | "babel-jest": "18.0.0", 16 | "babel-preset-react-native": "1.9.1", 17 | "jest": "18.0.0", 18 | "react-test-renderer": "15.4.1" 19 | }, 20 | "jest": { 21 | "preset": "react-native" 22 | } 23 | } 24 | --------------------------------------------------------------------------------