├── .github └── workflows │ └── update-year.yml ├── README.md ├── SwiggyClone.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── dheerajkumarsharma.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── dheerajkumarsharma.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── SwiggyClone ├── AppBase ├── AppDelegate.swift ├── Base.lproj │ └── LaunchScreen.storyboard └── SceneDelegate.swift ├── AppUtility ├── Extensions │ └── UIKit-Extension │ │ ├── NSTextAttachment+Extension.swift │ │ ├── UIButton+Extension.swift │ │ ├── UIColor+Extension.swift │ │ ├── UIFont+Extension.swift │ │ ├── UILabel+Extension.swift │ │ ├── UIString+Extension.swift │ │ └── UIView+Extension.swift └── Other │ ├── AppConstants.swift │ └── ScreenSize.swift ├── Plist └── Info.plist ├── Resources ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── Food_img1.imageset │ │ ├── Contents.json │ │ └── Food_img1.jpeg │ ├── Food_img2.imageset │ │ ├── Contents.json │ │ └── Food_img2.jpeg │ ├── Food_img3.imageset │ │ ├── Contents.json │ │ └── Food_img3.jpeg │ ├── Food_img4.imageset │ │ ├── Contents.json │ │ └── Food_img4.jpeg │ ├── Food_img5.imageset │ │ ├── Contents.json │ │ └── Food_img5.jpeg │ ├── curated_img1.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.33.15 PM.png │ ├── curated_img2.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.34.23 PM.png │ ├── curated_img3.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.34.58 PM.png │ ├── curated_img4.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.35.26 PM.png │ ├── curated_img5.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.38.30 PM.png │ ├── curated_img6.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.39.01 PM.png │ ├── curated_img7.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.40.06 PM.png │ ├── ic_arrow_down.imageset │ │ ├── Contents.json │ │ ├── ic_arrow_down.png │ │ ├── ic_arrow_down@2x.png │ │ └── ic_arrow_down@3x.png │ ├── ic_back.imageset │ │ ├── Contents.json │ │ ├── ic_back.png │ │ ├── ic_back@2x.png │ │ └── ic_back@3x.png │ ├── ic_back2.imageset │ │ ├── Contents.json │ │ ├── ic_back2.png │ │ ├── ic_back2@2x.png │ │ └── ic_back2@3x.png │ ├── ic_benefit.imageset │ │ ├── Contents.json │ │ └── ic_benefit.png │ ├── ic_bestseller.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.27.20 PM.png │ ├── ic_check.imageset │ │ ├── Contents.json │ │ ├── ic_check.png │ │ ├── ic_check@2x.png │ │ └── ic_check@3x.png │ ├── ic_checkbox.imageset │ │ ├── Contents.json │ │ ├── ic_checkbox.png │ │ ├── ic_checkbox@2x.png │ │ └── ic_checkbox@3x.png │ ├── ic_close.imageset │ │ ├── Contents.json │ │ ├── ic_close.png │ │ ├── ic_close@2x.png │ │ └── ic_close@3x.png │ ├── ic_d_banner.imageset │ │ ├── Contents.json │ │ └── IMG_4158 2.jpg │ ├── ic_dish_img1.imageset │ │ ├── Contents.json │ │ └── ic_dish_img1.jpeg │ ├── ic_dish_img2.imageset │ │ ├── Contents.json │ │ └── ic_dish_img2.png │ ├── ic_dish_img3.imageset │ │ ├── Contents.json │ │ └── ic_dish_img3.png │ ├── ic_dish_img4.imageset │ │ ├── Contents.json │ │ └── ic_dish_img4.png │ ├── ic_dish_img5.imageset │ │ ├── Contents.json │ │ └── ic_dish_img5.png │ ├── ic_express.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.12.33 PM.png │ ├── ic_food.imageset │ │ ├── Contents.json │ │ └── ic_food.png │ ├── ic_food_banner1.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.55.40 PM.png │ ├── ic_food_banner2.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.17.25 PM.png │ ├── ic_food_banner3.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.16.55 PM.png │ ├── ic_food_banner4.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-12 at 4.44.28 PM.png │ ├── ic_food_seleted.imageset │ │ ├── Contents.json │ │ └── ic_food_seleted.png │ ├── ic_food_tab.imageset │ │ ├── Contents.json │ │ ├── ic_food_tab.png │ │ ├── ic_food_tab@2x.png │ │ └── ic_food_tab@3x.png │ ├── ic_food_tab_selected.imageset │ │ ├── Contents.json │ │ ├── ic_food_tab_selected.png │ │ ├── ic_food_tab_selected@2x.png │ │ └── ic_food_tab_selected@3x.png │ ├── ic_newlaunch.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.27.40 PM.png │ ├── ic_nonveg.imageset │ │ ├── Contents.json │ │ └── ic_nonveg.png │ ├── ic_offer.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.10.27 PM.png │ ├── ic_pocket.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.27.02 PM.png │ ├── ic_premium.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.11.31 PM.png │ ├── ic_search.imageset │ │ ├── Contents.json │ │ └── ic_search.png │ ├── ic_search_default.imageset │ │ ├── Contents.json │ │ └── ic_search_default.jpg │ ├── ic_search_img1.imageset │ │ ├── Contents.json │ │ └── ic_search_img1.jpeg │ ├── ic_search_img2.imageset │ │ ├── Contents.json │ │ └── ic_search_img2.png │ ├── ic_search_img3.imageset │ │ ├── Contents.json │ │ └── ic_search_img3.jpeg │ ├── ic_search_img4.imageset │ │ ├── Contents.json │ │ └── ic_search_img4.png │ ├── ic_search_img5.imageset │ │ ├── Contents.json │ │ └── ic_search_img5.jpeg │ ├── ic_search_img6.imageset │ │ ├── Contents.json │ │ └── ic_search_img6.png │ ├── ic_search_img7.imageset │ │ ├── Contents.json │ │ └── ic_search_img7.png │ ├── ic_search_img8.imageset │ │ ├── Contents.json │ │ └── ic_search_img8.png │ ├── ic_search_selected.imageset │ │ ├── Contents.json │ │ └── ic_search_selected.png │ ├── ic_search_tab.imageset │ │ ├── Contents.json │ │ ├── ic_search_tab.png │ │ ├── ic_search_tab@2x.png │ │ └── ic_search_tab@3x.png │ ├── ic_search_tab_selected.imageset │ │ ├── Contents.json │ │ ├── ic_search_tab_selected.png │ │ ├── ic_search_tab_selected@2x.png │ │ └── ic_search_tab_selected@3x.png │ ├── ic_setting.imageset │ │ ├── Contents.json │ │ ├── ic_setting.png │ │ ├── ic_setting@2x.png │ │ └── ic_setting@3x.png │ ├── ic_toprated.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.12.10 PM.png │ ├── ic_uncheck.imageset │ │ ├── Contents.json │ │ ├── ic_uncheck.png │ │ ├── ic_uncheck@2x.png │ │ └── ic_uncheck@3x.png │ ├── ic_uncheckbox.imageset │ │ ├── Contents.json │ │ ├── ic_uncheckbox.png │ │ ├── ic_uncheckbox@2x.png │ │ └── ic_uncheckbox@3x.png │ ├── ic_veg.imageset │ │ ├── Contents.json │ │ └── ic_veg.png │ ├── ic_vegonly.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 4.11.14 PM.png │ ├── vegan_img1.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.06.25 PM.png │ ├── vegan_img2.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.07.04 PM.png │ ├── vegan_img3.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.09.10 PM.png │ └── vegan_img4.imageset │ │ ├── Contents.json │ │ └── Screenshot 2022-02-01 at 5.09.22 PM.png └── Fonts │ ├── ProximaNovaAltLight.otf │ ├── ProximaNovaAltRegular.otf │ ├── ProximaNovaBold.otf │ └── ProximaNovaCondensedBold.otf └── Scenes ├── Model ├── AppLayouts.swift ├── CuratedRestaurantsModel.swift ├── DishesListModel.swift ├── FilterDataModel.swift ├── FoodCategoryDataModel.swift ├── FoodTopBannerModel.swift ├── Layout+Enum.swift ├── RestaurantListDataModel.swift ├── SearchFilterModel.swift ├── SearchingContentListDataModel.swift └── VeganRestaurantSectionModel.swift └── Views ├── Filter └── Views │ ├── FilterCategoryTVCell.swift │ ├── FilterCategoryView.swift │ ├── FilterDetailTableViewCell.swift │ ├── FilterDetailView.swift │ ├── FilterLauncher.swift │ └── FilterView.swift ├── Food ├── Controllers │ ├── FoodDetailViewController+Extension.swift │ ├── FoodDetailViewController.swift │ ├── FoodViewController+Delegates.swift │ ├── FoodViewController+Extension.swift │ └── FoodViewController.swift └── Views │ ├── FoodCategoryCVCell.swift │ ├── FoodDetailNavView.swift │ ├── FoodFilterHeaderView.swift │ ├── FoodSuggestionCardCVCell.swift │ ├── FoodTopBannerCVCell.swift │ ├── RestaurantVeganCVCell.swift │ ├── RestaurantsListCVCell.swift │ ├── SectionDecorationView.swift │ ├── SectionFooterView.swift │ ├── SectionHeaderView.swift │ └── SectionHeaderView_2.swift ├── Search ├── Controllers │ ├── SearchViewController+Delegate.swift │ └── SearchViewController.swift └── View │ ├── SearchDetailContainer │ ├── DishesCollectionViewCell.swift │ ├── SearchCategoryCollectionViewCell.swift │ ├── SearchCategoryCustomView.swift │ ├── SearchDetailContainerView.swift │ ├── SearchFilterCustomView.swift │ ├── SearchFiltersCollectionViewCell.swift │ └── SearchedContentTableViewCell.swift │ └── SearchedContainer │ ├── SearchContainerView.swift │ └── SearchedContentContainerView.swift └── Tab └── TabBarViewController.swift /.github/workflows/update-year.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/.github/workflows/update-year.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/README.md -------------------------------------------------------------------------------- /SwiggyClone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiggyClone.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiggyClone.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiggyClone.xcodeproj/project.xcworkspace/xcuserdata/dheerajkumarsharma.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone.xcodeproj/project.xcworkspace/xcuserdata/dheerajkumarsharma.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwiggyClone.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SwiggyClone.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwiggyClone/AppBase/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppBase/AppDelegate.swift -------------------------------------------------------------------------------- /SwiggyClone/AppBase/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppBase/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiggyClone/AppBase/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppBase/SceneDelegate.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Extensions/UIKit-Extension/NSTextAttachment+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Extensions/UIKit-Extension/NSTextAttachment+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIButton+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIButton+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIColor+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIFont+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIFont+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Extensions/UIKit-Extension/UILabel+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Extensions/UIKit-Extension/UILabel+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIString+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIString+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Extensions/UIKit-Extension/UIView+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Other/AppConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Other/AppConstants.swift -------------------------------------------------------------------------------- /SwiggyClone/AppUtility/Other/ScreenSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/AppUtility/Other/ScreenSize.swift -------------------------------------------------------------------------------- /SwiggyClone/Plist/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Plist/Info.plist -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img1.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img1.imageset/Food_img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img1.imageset/Food_img1.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img2.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img2.imageset/Food_img2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img2.imageset/Food_img2.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img3.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img3.imageset/Food_img3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img3.imageset/Food_img3.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img4.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img4.imageset/Food_img4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img4.imageset/Food_img4.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img5.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/Food_img5.imageset/Food_img5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/Food_img5.imageset/Food_img5.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img1.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img1.imageset/Screenshot 2022-02-01 at 5.33.15 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img1.imageset/Screenshot 2022-02-01 at 5.33.15 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img2.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img2.imageset/Screenshot 2022-02-01 at 5.34.23 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img2.imageset/Screenshot 2022-02-01 at 5.34.23 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img3.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img3.imageset/Screenshot 2022-02-01 at 5.34.58 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img3.imageset/Screenshot 2022-02-01 at 5.34.58 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img4.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img4.imageset/Screenshot 2022-02-01 at 5.35.26 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img4.imageset/Screenshot 2022-02-01 at 5.35.26 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img5.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img5.imageset/Screenshot 2022-02-01 at 5.38.30 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img5.imageset/Screenshot 2022-02-01 at 5.38.30 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img6.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img6.imageset/Screenshot 2022-02-01 at 5.39.01 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img6.imageset/Screenshot 2022-02-01 at 5.39.01 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img7.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/curated_img7.imageset/Screenshot 2022-02-01 at 5.40.06 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/curated_img7.imageset/Screenshot 2022-02-01 at 5.40.06 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_arrow_down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_arrow_down.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_arrow_down.imageset/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_arrow_down.imageset/ic_arrow_down.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_arrow_down.imageset/ic_arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_arrow_down.imageset/ic_arrow_down@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_arrow_down.imageset/ic_arrow_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_arrow_down.imageset/ic_arrow_down@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_back.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_back.imageset/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_back.imageset/ic_back.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_back.imageset/ic_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_back.imageset/ic_back@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_back.imageset/ic_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_back.imageset/ic_back@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_back2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_back2.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_back2.imageset/ic_back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_back2.imageset/ic_back2.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_back2.imageset/ic_back2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_back2.imageset/ic_back2@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_back2.imageset/ic_back2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_back2.imageset/ic_back2@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_benefit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_benefit.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_benefit.imageset/ic_benefit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_benefit.imageset/ic_benefit.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_bestseller.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_bestseller.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_bestseller.imageset/Screenshot 2022-02-01 at 4.27.20 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_bestseller.imageset/Screenshot 2022-02-01 at 4.27.20 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_check.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_check.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_check.imageset/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_check.imageset/ic_check.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_check.imageset/ic_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_check.imageset/ic_check@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_check.imageset/ic_check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_check.imageset/ic_check@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_checkbox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_checkbox.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_checkbox.imageset/ic_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_checkbox.imageset/ic_checkbox.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_checkbox.imageset/ic_checkbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_checkbox.imageset/ic_checkbox@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_checkbox.imageset/ic_checkbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_checkbox.imageset/ic_checkbox@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_close.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_close.imageset/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_close.imageset/ic_close.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_close.imageset/ic_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_close.imageset/ic_close@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_close.imageset/ic_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_close.imageset/ic_close@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_d_banner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_d_banner.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_d_banner.imageset/IMG_4158 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_d_banner.imageset/IMG_4158 2.jpg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img1.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img1.imageset/ic_dish_img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img1.imageset/ic_dish_img1.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img2.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img2.imageset/ic_dish_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img2.imageset/ic_dish_img2.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img3.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img3.imageset/ic_dish_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img3.imageset/ic_dish_img3.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img4.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img4.imageset/ic_dish_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img4.imageset/ic_dish_img4.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img5.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_dish_img5.imageset/ic_dish_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_dish_img5.imageset/ic_dish_img5.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_express.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_express.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_express.imageset/Screenshot 2022-02-01 at 4.12.33 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_express.imageset/Screenshot 2022-02-01 at 4.12.33 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food.imageset/ic_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food.imageset/ic_food.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_banner1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_banner1.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_banner1.imageset/Screenshot 2022-02-01 at 5.55.40 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_banner1.imageset/Screenshot 2022-02-01 at 5.55.40 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_banner2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_banner2.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_banner2.imageset/Screenshot 2022-02-01 at 4.17.25 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_banner2.imageset/Screenshot 2022-02-01 at 4.17.25 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_banner3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_banner3.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_banner3.imageset/Screenshot 2022-02-01 at 4.16.55 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_banner3.imageset/Screenshot 2022-02-01 at 4.16.55 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_banner4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_banner4.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_banner4.imageset/Screenshot 2022-02-12 at 4.44.28 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_banner4.imageset/Screenshot 2022-02-12 at 4.44.28 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_seleted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_seleted.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_seleted.imageset/ic_food_seleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_seleted.imageset/ic_food_seleted.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_tab.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_tab.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_tab.imageset/ic_food_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_tab.imageset/ic_food_tab.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_tab.imageset/ic_food_tab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_tab.imageset/ic_food_tab@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_tab.imageset/ic_food_tab@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_tab.imageset/ic_food_tab@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_tab_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_tab_selected.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_tab_selected.imageset/ic_food_tab_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_tab_selected.imageset/ic_food_tab_selected.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_tab_selected.imageset/ic_food_tab_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_tab_selected.imageset/ic_food_tab_selected@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_food_tab_selected.imageset/ic_food_tab_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_food_tab_selected.imageset/ic_food_tab_selected@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_newlaunch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_newlaunch.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_newlaunch.imageset/Screenshot 2022-02-01 at 4.27.40 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_newlaunch.imageset/Screenshot 2022-02-01 at 4.27.40 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_nonveg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_nonveg.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_nonveg.imageset/ic_nonveg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_nonveg.imageset/ic_nonveg.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_offer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_offer.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_offer.imageset/Screenshot 2022-02-01 at 4.10.27 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_offer.imageset/Screenshot 2022-02-01 at 4.10.27 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_pocket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_pocket.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_pocket.imageset/Screenshot 2022-02-01 at 4.27.02 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_pocket.imageset/Screenshot 2022-02-01 at 4.27.02 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_premium.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_premium.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_premium.imageset/Screenshot 2022-02-01 at 4.11.31 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_premium.imageset/Screenshot 2022-02-01 at 4.11.31 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search.imageset/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search.imageset/ic_search.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_default.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_default.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_default.imageset/ic_search_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_default.imageset/ic_search_default.jpg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img1.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img1.imageset/ic_search_img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img1.imageset/ic_search_img1.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img2.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img2.imageset/ic_search_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img2.imageset/ic_search_img2.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img3.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img3.imageset/ic_search_img3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img3.imageset/ic_search_img3.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img4.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img4.imageset/ic_search_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img4.imageset/ic_search_img4.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img5.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img5.imageset/ic_search_img5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img5.imageset/ic_search_img5.jpeg -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img6.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img6.imageset/ic_search_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img6.imageset/ic_search_img6.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img7.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img7.imageset/ic_search_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img7.imageset/ic_search_img7.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img8.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_img8.imageset/ic_search_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_img8.imageset/ic_search_img8.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_selected.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_selected.imageset/ic_search_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_selected.imageset/ic_search_selected.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_tab.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_tab.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_tab.imageset/ic_search_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_tab.imageset/ic_search_tab.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_tab.imageset/ic_search_tab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_tab.imageset/ic_search_tab@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_tab.imageset/ic_search_tab@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_tab.imageset/ic_search_tab@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_tab_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_tab_selected.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_tab_selected.imageset/ic_search_tab_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_tab_selected.imageset/ic_search_tab_selected.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_tab_selected.imageset/ic_search_tab_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_tab_selected.imageset/ic_search_tab_selected@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_search_tab_selected.imageset/ic_search_tab_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_search_tab_selected.imageset/ic_search_tab_selected@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_setting.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_setting.imageset/ic_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_setting.imageset/ic_setting.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_setting.imageset/ic_setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_setting.imageset/ic_setting@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_setting.imageset/ic_setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_setting.imageset/ic_setting@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_toprated.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_toprated.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_toprated.imageset/Screenshot 2022-02-01 at 4.12.10 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_toprated.imageset/Screenshot 2022-02-01 at 4.12.10 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_uncheck.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_uncheck.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_uncheck.imageset/ic_uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_uncheck.imageset/ic_uncheck.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_uncheck.imageset/ic_uncheck@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_uncheck.imageset/ic_uncheck@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_uncheck.imageset/ic_uncheck@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_uncheck.imageset/ic_uncheck@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_uncheckbox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_uncheckbox.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_uncheckbox.imageset/ic_uncheckbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_uncheckbox.imageset/ic_uncheckbox.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_uncheckbox.imageset/ic_uncheckbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_uncheckbox.imageset/ic_uncheckbox@2x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_uncheckbox.imageset/ic_uncheckbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_uncheckbox.imageset/ic_uncheckbox@3x.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_veg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_veg.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_veg.imageset/ic_veg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_veg.imageset/ic_veg.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_vegonly.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_vegonly.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/ic_vegonly.imageset/Screenshot 2022-02-01 at 4.11.14 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/ic_vegonly.imageset/Screenshot 2022-02-01 at 4.11.14 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/vegan_img1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/vegan_img1.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/vegan_img1.imageset/Screenshot 2022-02-01 at 5.06.25 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/vegan_img1.imageset/Screenshot 2022-02-01 at 5.06.25 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/vegan_img2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/vegan_img2.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/vegan_img2.imageset/Screenshot 2022-02-01 at 5.07.04 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/vegan_img2.imageset/Screenshot 2022-02-01 at 5.07.04 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/vegan_img3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/vegan_img3.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/vegan_img3.imageset/Screenshot 2022-02-01 at 5.09.10 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/vegan_img3.imageset/Screenshot 2022-02-01 at 5.09.10 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/vegan_img4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/vegan_img4.imageset/Contents.json -------------------------------------------------------------------------------- /SwiggyClone/Resources/Assets.xcassets/vegan_img4.imageset/Screenshot 2022-02-01 at 5.09.22 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Assets.xcassets/vegan_img4.imageset/Screenshot 2022-02-01 at 5.09.22 PM.png -------------------------------------------------------------------------------- /SwiggyClone/Resources/Fonts/ProximaNovaAltLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Fonts/ProximaNovaAltLight.otf -------------------------------------------------------------------------------- /SwiggyClone/Resources/Fonts/ProximaNovaAltRegular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Fonts/ProximaNovaAltRegular.otf -------------------------------------------------------------------------------- /SwiggyClone/Resources/Fonts/ProximaNovaBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Fonts/ProximaNovaBold.otf -------------------------------------------------------------------------------- /SwiggyClone/Resources/Fonts/ProximaNovaCondensedBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Resources/Fonts/ProximaNovaCondensedBold.otf -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/AppLayouts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/AppLayouts.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/CuratedRestaurantsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/CuratedRestaurantsModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/DishesListModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/DishesListModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/FilterDataModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/FilterDataModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/FoodCategoryDataModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/FoodCategoryDataModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/FoodTopBannerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/FoodTopBannerModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/Layout+Enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/Layout+Enum.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/RestaurantListDataModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/RestaurantListDataModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/SearchFilterModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/SearchFilterModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/SearchingContentListDataModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/SearchingContentListDataModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Model/VeganRestaurantSectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Model/VeganRestaurantSectionModel.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Filter/Views/FilterCategoryTVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Filter/Views/FilterCategoryTVCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Filter/Views/FilterCategoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Filter/Views/FilterCategoryView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Filter/Views/FilterDetailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Filter/Views/FilterDetailTableViewCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Filter/Views/FilterDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Filter/Views/FilterDetailView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Filter/Views/FilterLauncher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Filter/Views/FilterLauncher.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Filter/Views/FilterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Filter/Views/FilterView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Controllers/FoodDetailViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Controllers/FoodDetailViewController+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Controllers/FoodDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Controllers/FoodDetailViewController.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Controllers/FoodViewController+Delegates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Controllers/FoodViewController+Delegates.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Controllers/FoodViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Controllers/FoodViewController+Extension.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Controllers/FoodViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Controllers/FoodViewController.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/FoodCategoryCVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/FoodCategoryCVCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/FoodDetailNavView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/FoodDetailNavView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/FoodFilterHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/FoodFilterHeaderView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/FoodSuggestionCardCVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/FoodSuggestionCardCVCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/FoodTopBannerCVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/FoodTopBannerCVCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/RestaurantVeganCVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/RestaurantVeganCVCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/RestaurantsListCVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/RestaurantsListCVCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/SectionDecorationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/SectionDecorationView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/SectionFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/SectionFooterView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/SectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/SectionHeaderView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Food/Views/SectionHeaderView_2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Food/Views/SectionHeaderView_2.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/Controllers/SearchViewController+Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/Controllers/SearchViewController+Delegate.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/Controllers/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/Controllers/SearchViewController.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/DishesCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/DishesCollectionViewCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchCategoryCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchCategoryCollectionViewCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchCategoryCustomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchCategoryCustomView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchDetailContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchDetailContainerView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchFilterCustomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchFilterCustomView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchFiltersCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchFiltersCollectionViewCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchedContentTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchDetailContainer/SearchedContentTableViewCell.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchedContainer/SearchContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchedContainer/SearchContainerView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Search/View/SearchedContainer/SearchedContentContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Search/View/SearchedContainer/SearchedContentContainerView.swift -------------------------------------------------------------------------------- /SwiggyClone/Scenes/Views/Tab/TabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/SwiggyClone/HEAD/SwiggyClone/Scenes/Views/Tab/TabBarViewController.swift --------------------------------------------------------------------------------