├── .DS_Store ├── .gitignore ├── AUTHORS ├── DoorDash.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── marvinzhan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── marvinzhan.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── tengqizhan.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── DoorDash.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── marvinzhan.xcuserdatad │ ├── IDEFindNavigatorScopes.plist │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── tengqizhan.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── DoorDash ├── .DS_Store ├── AppDelegate.swift ├── Classes │ ├── .DS_Store │ ├── Account │ │ ├── .DS_Store │ │ ├── Coordinators │ │ │ └── UserAccountCoordinator.swift │ │ ├── Presenter │ │ │ ├── AccountAppVersionSectionController.swift │ │ │ ├── AccountDetailsSectionController.swift │ │ │ ├── AccountMoreSectionController.swift │ │ │ └── AccountNotificationsSectionController.swift │ │ ├── ViewController │ │ │ ├── BouncyLayout.swift │ │ │ └── UserAccountViewController.swift │ │ ├── ViewModel │ │ │ └── UserAccountViewModel.swift │ │ └── Views │ │ │ └── Cells │ │ │ ├── UserAccountPageSubTitleCell.swift │ │ │ ├── UserAccountPageTitleAndToggleCell.swift │ │ │ ├── UserAccountPageTitleAndValueCell.swift │ │ │ ├── UserAccountPageTitleCell.swift │ │ │ ├── UserAccountPageTitleWithDescriptionCell.swift │ │ │ └── UserAccountPageVersionCell.swift │ ├── Checkout │ │ ├── Coordinators │ │ │ └── CheckoutCoordinator.swift │ │ ├── Presenters │ │ │ ├── CheckoutDeliveryDetailsSectionController.swift │ │ │ └── CheckoutPaymentSectionController.swift │ │ ├── ViewControllers │ │ │ └── CheckoutViewController.swift │ │ ├── ViewModels │ │ │ └── CheckoutViewModel.swift │ │ └── Views │ │ │ └── Cells │ │ │ ├── CheckoutDasherTipCell.swift │ │ │ ├── CheckoutDisplayInfoCell.swift │ │ │ ├── CheckoutSectionHeaderCell.swift │ │ │ └── DeliveryDetailsMapCell.swift │ ├── Common │ │ ├── Address │ │ │ ├── Coordinator │ │ │ │ └── SelectAddressCoordinator.swift │ │ │ ├── Presenters │ │ │ │ ├── AddressTextLabelSectionController.swift │ │ │ │ ├── ConfirmAddressSectionController.swift │ │ │ │ ├── EnterAddressSectionController.swift │ │ │ │ └── RefineAddressSectionController.swift │ │ │ ├── ViewController │ │ │ │ ├── ConfirmAddressViewController.swift │ │ │ │ ├── RefineLocationViewController.swift │ │ │ │ └── SelectAddressViewController.swift │ │ │ ├── ViewModel │ │ │ │ ├── ConfirmAddressViewModel.swift │ │ │ │ └── SelectAddressViewModel.swift │ │ │ └── Views │ │ │ │ ├── Cells │ │ │ │ ├── AddressTextLabelCell.swift │ │ │ │ ├── ConfirmAddressMapCell.swift │ │ │ │ ├── ConfirmAddressTitleCell.swift │ │ │ │ ├── DasherInstructionsInputCell.swift │ │ │ │ ├── EnterAddressCell.swift │ │ │ │ ├── RefineAddressMapCell.swift │ │ │ │ └── RefineLocationTitleCell.swift │ │ │ │ ├── HeaderTextLabelView.swift │ │ │ │ ├── InputApartmentView.swift │ │ │ │ └── NavigationAddressHeaderView.swift │ │ ├── Payment │ │ │ ├── AddCard │ │ │ │ ├── Coordinators │ │ │ │ │ └── AddPaymentCardCoordinator.swift │ │ │ │ ├── ViewControllers │ │ │ │ │ └── AddPaymentCardViewController.swift │ │ │ │ └── ViewModels │ │ │ │ │ └── AddPaymentCardViewModel.swift │ │ │ └── PaymentMethods │ │ │ │ ├── New Group │ │ │ │ └── PaymentMethodsCoordinator.swift │ │ │ │ ├── Presenters │ │ │ │ └── PaymentMethodSectionController.swift │ │ │ │ ├── ViewControllers │ │ │ │ └── PaymentMethodsViewController.swift │ │ │ │ ├── ViewModels │ │ │ │ └── PaymentMethodsViewModel.swift │ │ │ │ └── Views │ │ │ │ └── Cells │ │ │ │ ├── PaymentMethodCell.swift │ │ │ │ └── PaymentMethodsPageTitleCell.swift │ │ └── SearchAddress │ │ │ ├── Coordinator │ │ │ └── SearchAddressCoordinator.swift │ │ │ ├── Interactor │ │ │ └── SearchAddressInteractor.swift │ │ │ ├── Presenter │ │ │ ├── SearchAddressPresenter.swift │ │ │ └── SectionController │ │ │ │ ├── BaseSearchAddressSectionController.swift │ │ │ │ ├── ConfirmActionSectionController.swift │ │ │ │ ├── EnterAddressInputSectionController.swift │ │ │ │ ├── EnterAddressMapSectionController.swift │ │ │ │ ├── SearchAddressEmptyResultSectionController.swift │ │ │ │ ├── SearchAddressInputSectionController.swift │ │ │ │ ├── SearchAddressItemSectionController.swift │ │ │ │ └── SearchAddressItemsSectionController.swift │ │ │ ├── View │ │ │ └── Cells │ │ │ │ ├── ConfirmAddressButtonCell.swift │ │ │ │ ├── EnterAddressInputCell.swift │ │ │ │ ├── SearchAddressEmptyResultCell.swift │ │ │ │ ├── SearchAddressInputCell.swift │ │ │ │ ├── SearchAddressItemCell.swift │ │ │ │ ├── SearchAddressResultMapCell.swift │ │ │ │ └── SearchAddressSectionFooterCell.swift │ │ │ └── ViewController │ │ │ └── SearchAddressViewController.swift │ ├── Drink │ │ ├── Coordinators │ │ │ └── BrowseDrinkCoordinator.swift │ │ └── ViewControllers │ │ │ └── BrowseDrinkViewController.swift │ ├── Food │ │ ├── .DS_Store │ │ ├── Common │ │ │ ├── Presenters │ │ │ │ ├── .DS_Store │ │ │ │ └── AllStores │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── BrowseFoodAllStoreHeaderSectionController.swift │ │ │ │ │ ├── BrowseFoodStoreMenuDisplaySectionController.swift │ │ │ │ │ └── SingleStoreSectionController.swift │ │ │ ├── ViewControllers │ │ │ │ └── BaseSearchAllStoresViewController.swift │ │ │ ├── ViewModel │ │ │ │ ├── BrowseFoodPresenterModels.swift │ │ │ │ └── PresentableViewModel.swift │ │ │ └── Views │ │ │ │ └── Cells │ │ │ │ └── AllStores │ │ │ │ ├── BrowseFoodStoreDispalyCell.swift │ │ │ │ └── BrowseFoodStoreMenuImageCell.swift │ │ ├── CuisineAllStores │ │ │ ├── Coordinators │ │ │ │ └── CuisineAllStoresCoordinator.swift │ │ │ ├── ViewControllers │ │ │ │ └── CuisineAllStoresViewController.swift │ │ │ ├── ViewModels │ │ │ │ └── CuisineAllStoresViewModel.swift │ │ │ └── Views │ │ │ │ └── Cells │ │ │ │ └── CuisineCarousel │ │ │ │ ├── LOTStyle │ │ │ │ ├── AnimatedCuisineCarouselCollectionViewCell.swift │ │ │ │ ├── AnimatedCuisineItemCell.swift │ │ │ │ └── HorizontalCarouselCollectionViewCell.swift │ │ │ │ └── StaticStyle │ │ │ │ ├── CuisineCarouselCollectionViewCell.swift │ │ │ │ ├── CuisineCarouselPageCollectionViewCell.swift │ │ │ │ └── CuisineItemCell.swift │ │ ├── CuratedCategoryAllStores │ │ │ ├── Coordinators │ │ │ │ └── CuratedCategoryAllStoresCoordinator.swift │ │ │ ├── ViewControllers │ │ │ │ └── CuratedCategoryAllStoresViewController.swift │ │ │ └── ViewModels │ │ │ │ └── CuratedCategoryAllStoresViewModel.swift │ │ ├── HomePage │ │ │ ├── .DS_Store │ │ │ ├── Coordinators │ │ │ │ └── BrowseFoodTabCoordinator.swift │ │ │ ├── Presenters │ │ │ │ ├── CuisineCarousel │ │ │ │ │ ├── LOTStyle │ │ │ │ │ │ ├── AnimatedCuisineCarouselSectionController.swift │ │ │ │ │ │ └── AnimatedCuisineItemSectionController.swift │ │ │ │ │ └── StaticStyle │ │ │ │ │ │ ├── CuisineCarouselPageSectionController.swift │ │ │ │ │ │ ├── CuisineCarouselSectionController.swift │ │ │ │ │ │ └── CuisineItemSectonController.swift │ │ │ │ ├── StoreCarousel │ │ │ │ │ ├── CuratedCategoryHeaderSectionController.swift │ │ │ │ │ ├── StoreCarouselSectionController.swift │ │ │ │ │ ├── StoreHorizontalCarouselItemSectionController.swift │ │ │ │ │ └── StoreHorizontalCarouselSectionController.swift │ │ │ │ └── StoreSort │ │ │ │ │ ├── StoreSortHorizontalSectionController.swift │ │ │ │ │ └── StoreSortItemSectionController.swift │ │ │ ├── ViewControllers │ │ │ │ └── BrowseFoodViewController.swift │ │ │ ├── ViewModels │ │ │ │ └── BrowseFoodViewModel.swift │ │ │ └── Views │ │ │ │ ├── DynamicHeightNavigation │ │ │ │ ├── BrowsePageNavigationBar.swift │ │ │ │ └── DynamicHeightNavigationBar.swift │ │ │ │ ├── HeaderView │ │ │ │ ├── BrowseFoodAllStoresHeaderView.swift │ │ │ │ ├── BrowseFoodHeaderWithSubTitleView.swift │ │ │ │ ├── BrowseFoodSectionHeaderView.swift │ │ │ │ └── CuratedCategoryHeaderCell.swift │ │ │ │ ├── Sort │ │ │ │ ├── StoreSortBaseCell.swift │ │ │ │ ├── StoreSortBinaryCell.swift │ │ │ │ ├── StoreSortPriceRangeCell.swift │ │ │ │ └── StoreSortRatingCell.swift │ │ │ │ └── StoreCarousel │ │ │ │ ├── StoreCarouselDisplayCell.swift │ │ │ │ ├── StoreCarouselFooterCell.swift │ │ │ │ ├── StoreCarouselLargeDisplayCell.swift │ │ │ │ ├── StoreCarouselTwoStoresCell.swift │ │ │ │ ├── StoreCarouselViewAllCell.swift │ │ │ │ └── StoreHorizontalCarouselCollectionViewCell.swift │ │ └── StoreDetail │ │ │ ├── Coordinators │ │ │ └── StoreDetailCoordinator.swift │ │ │ ├── Presenters │ │ │ ├── StoreDetailMenuSectionController.swift │ │ │ ├── StoreDetailOverviewSectionController.swift │ │ │ └── StoreDetailSwitchMenuSectionController.swift │ │ │ ├── ViewControllers │ │ │ └── StoreDetailViewController.swift │ │ │ ├── ViewModels │ │ │ └── StoreDetailViewModel.swift │ │ │ └── Views │ │ │ └── Cells │ │ │ ├── StoreDetailDeliveryInfoCell.swift │ │ │ ├── StoreDetailMenuHeaderCell.swift │ │ │ ├── StoreDetailMenuItemCell.swift │ │ │ ├── StoreDetailMenuNavigatorCell.swift │ │ │ ├── StoreDetailMenuSeparatorCell.swift │ │ │ ├── StoreDetailOverviewCell.swift │ │ │ └── StoreDetailSwitchMenuCell.swift │ ├── ItemDetail │ │ ├── Coordinators │ │ │ └── ItemDetailInfoCoordinator.swift.swift │ │ ├── Presenters │ │ │ ├── ItemDetailAddInstructionSectionController.swift │ │ │ ├── ItemDetailMultipleChoiceSectionController.swift │ │ │ ├── ItemDetailOverviewSectionController.swift │ │ │ └── ItemDetailSelectQuantitySectionController.swift │ │ ├── ViewControllers │ │ │ └── ItemDetailInfoViewController.swift │ │ ├── ViewModels │ │ │ └── ItemDetailInfoViewModel.swift │ │ └── Views │ │ │ ├── AdjustItemQuantityView.swift │ │ │ ├── Cells │ │ │ ├── ItemDetailAddInstructionsCell.swift │ │ │ ├── ItemDetailOptionCell.swift │ │ │ ├── ItemDetailOptionHeaderCell.swift │ │ │ ├── ItemDetailOverviewCell.swift │ │ │ └── ItemDetailSelectNumberCell.swift │ │ │ └── OrderTwoTitlesButton.swift │ ├── Onboarding │ │ ├── .DS_Store │ │ ├── Coordinators │ │ │ └── OnboardingCoordinator.swift │ │ ├── Presenter │ │ │ ├── HorizontalSectionController.swift │ │ │ ├── OnboardingItemSectionController.swift │ │ │ ├── SignInputFormSectionController.swift │ │ │ ├── SignupAgreementSectionController.swift │ │ │ ├── SignupButtonSectionController.swift │ │ │ └── SocialLoginSectionController.swift │ │ ├── ViewController │ │ │ ├── LaunchLoadingViewController.swift │ │ │ ├── OnboardingViewController.swift │ │ │ └── SignupHomeViewController.swift │ │ ├── ViewModel │ │ │ ├── OnboardingViewModel.swift │ │ │ └── SignupHomeViewModel.swift │ │ └── Views │ │ │ ├── Cells │ │ │ ├── HorizontalScrollCollectionViewCell.swift │ │ │ ├── InputFormCell.swift │ │ │ ├── OnboardingItemCell.swift │ │ │ ├── SignupAgreementCell.swift │ │ │ ├── SignupButtonCell.swift │ │ │ └── SocialLoginCell.swift │ │ │ ├── LoginComponentView.swift │ │ │ └── SignupHomeNavigationBar.swift │ ├── OrderCart │ │ ├── Coordinators │ │ │ └── OrderCartCoordinator.swift │ │ ├── Presenters │ │ │ ├── OrderCartAddMoreItemsSectionController.swift │ │ │ ├── OrderCartEmptyDataSectionController.swift │ │ │ ├── OrderCartItemSectionController.swift │ │ │ ├── OrderCartPriceDisplaySectionController.swift │ │ │ └── OrderCartPromoCodeSectionController.swift │ │ ├── ViewControllers │ │ │ └── OrderCartViewController.swift │ │ ├── ViewModels │ │ │ └── OrderCartViewModel.swift │ │ └── Views │ │ │ ├── Cells │ │ │ ├── EmptyCartCell.swift │ │ │ ├── OrderCartAddMoreItemCell.swift │ │ │ ├── OrderCartItemCollectionViewCell.swift │ │ │ ├── OrderCartPriceDisplayCell.swift │ │ │ ├── OrderCartPromoCodeItemCell.swift │ │ │ └── OrderCartPromoHintCell.swift │ │ │ └── OrderCartThumbnailView.swift │ └── Pickup │ │ ├── Coordinator │ │ ├── PickupMapCoordinator.swift │ │ └── PickupMapTabCoordinator.swift │ │ ├── Interactor │ │ ├── PickupMapInteractor.swift │ │ └── StoreMapPinModel.swift │ │ ├── Presenter │ │ └── PickupMapPresenter.swift │ │ ├── View │ │ ├── Banner │ │ │ ├── PickupMapBannerController.swift │ │ │ └── PickupMapBannerView.swift │ │ ├── PickupMapListView.swift │ │ ├── PickupMapTitleView.swift │ │ └── StoreMapPinView.swift │ │ └── ViewController │ │ └── PickupMapViewController.swift ├── Coordinator │ ├── AppTracker.swift │ ├── Coordinator.swift │ ├── CustomNavigationBar.swift │ ├── InteractivePopRecognizer.swift │ └── Router.swift ├── Core │ ├── .DS_Store │ ├── ApplicationDependency.swift │ ├── ApplicationEnvironment │ │ ├── ApplicationEnvironment.swift │ │ └── Environment.swift │ ├── ApplicationSettings.swift │ ├── Authentication │ │ ├── AuthToken.swift │ │ └── Authentication.swift │ ├── CartManager.swift │ ├── Constants.swift │ ├── DataStorage │ │ ├── .DS_Store │ │ ├── Cache │ │ │ ├── .DS_Store │ │ │ ├── ApplicationCache.swift │ │ │ ├── CacheKeys.swift │ │ │ └── KeyValueStoreType.swift │ │ └── CoreData │ │ │ ├── .DS_Store │ │ │ ├── CoreModelVersion.swift │ │ │ ├── DataStore.swift │ │ │ ├── PersistentModel.swift │ │ │ └── Schema │ │ │ ├── DoorDash.xcdatamodeld │ │ │ └── DoorDash.xcdatamodel │ │ │ │ └── contents │ │ │ └── UWLife.xcdatamodeld │ │ │ └── UWLife.xcdatamodel │ │ │ └── contents │ ├── Endpoints │ │ ├── CoreComponents │ │ │ ├── AuthenticateRequestAdapter.swift │ │ │ ├── NetworkConfiguration.swift │ │ │ └── SessionManager+Extension.swift │ │ ├── Models │ │ │ ├── Error.swift │ │ │ ├── FetchCartRequestModel.swift │ │ │ ├── Filter.swift │ │ │ ├── ParameterEncoding.swift │ │ │ └── SignupTempAccount.swift │ │ ├── NetworkGlobalFunction.swift │ │ ├── ResponseModel │ │ │ ├── UserAddressesResponseModel.swift │ │ │ └── UserResponseModel.swift │ │ └── Services │ │ │ ├── BrowseFoodAPIService.swift │ │ │ ├── CartAPIService.swift │ │ │ ├── DirectionAPIService.swift │ │ │ ├── DoorDashAPIService.swift │ │ │ ├── GooglePlaceAPIService.swift │ │ │ ├── PaymentAPIService.swift │ │ │ ├── SearchStoreDetailAPIService.swift │ │ │ ├── SearchStoreItemAPIService.swift │ │ │ └── UserAPIService.swift │ ├── Logger │ │ └── Logger.swift │ ├── Models │ │ ├── BrowseFoodMainView.swift │ │ ├── Cart.swift │ │ ├── CartThumbnail.swift │ │ ├── DeliveryAddress.swift │ │ ├── GMPrediction.swift │ │ ├── MenuItem.swift │ │ ├── Money.swift │ │ ├── PaymentMethod.swift │ │ ├── Store.swift │ │ ├── StoreMenu.swift │ │ └── User.swift │ ├── Validation │ │ └── ValidationService.swift │ └── ViewModels │ │ ├── CartViewModel.swift │ │ ├── MenuCategoryViewModel.swift │ │ ├── MenuItemExtraViewModel.swift │ │ ├── MenuItemOptionViewModel.swift │ │ ├── MenuItemViewModel.swift │ │ ├── PaymentMethodViewModel.swift │ │ ├── StoreListViewModel.swift │ │ ├── StoreMenuViewModel.swift │ │ └── StoreViewModel.swift ├── Extension │ ├── .DS_Store │ ├── Foundation │ │ ├── Bundle+.swift │ │ ├── Collection+SafeAccess.swift │ │ ├── Device.generated.swift │ │ ├── Dictionary+Operations.swift │ │ ├── Double+Format.swift │ │ ├── Foundation+.swift │ │ ├── String+Size.swift │ │ └── UserDefaults+.swift │ └── UIKit │ │ ├── CGRect+.swift │ │ ├── Date+Interval.swift │ │ ├── Date+Weekdays.swift │ │ ├── UIBarButtonItem+Empty.swift │ │ ├── UICollectionView+Deque.swift │ │ ├── UIColor+Gradient+Hex.swift │ │ ├── UIFont+Size.swift │ │ ├── UIImageView+Color.swift │ │ ├── UIImageView+SDWebImage.swift │ │ ├── UILabel+NumOfLines.swift │ │ ├── UINavigationBar+Separator.swift │ │ ├── UIView+Border.swift │ │ └── UIView+Shadow.swift ├── Info.plist ├── Main │ ├── Base │ │ ├── BaseListViewController.swift │ │ └── BaseViewController.swift │ ├── Coordinators │ │ ├── AppCoordinator.swift │ │ └── ContentCoordinator.swift │ ├── DoorDashNavigationController.swift │ ├── MainTabBarController.swift │ └── ViewModel │ │ └── MainTabBarViewModel.swift ├── PersistentDataStore │ ├── .DS_Store │ ├── Extensions │ │ ├── DelieveryAddress+Persistent.swift │ │ ├── District+Persistent.swift │ │ ├── Store+Persistent.swift │ │ └── User+Persistent.swift │ ├── PSDeliveryAddress │ │ ├── .DS_Store │ │ ├── PSDeliveryAddress+CoreDataClass.swift │ │ └── PSDeliveryAddress+CoreDataProperties.swift │ ├── PSDistrict │ │ ├── PSDistrict+CoreDataClass.swift │ │ └── PSDistrict+CoreDataProperties.swift │ ├── PSStore │ │ ├── PSStore+CoreDataClass.swift │ │ └── PSStore+CoreDataProperties.swift │ └── PSUser │ │ ├── .DS_Store │ │ ├── PSUser+CoreDataClass.swift │ │ └── PSUser+CoreDataProperties.swift ├── Resources │ ├── .DS_Store │ ├── Assets.xcassets │ │ ├── .DS_Store │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── add_item.imageset │ │ │ ├── Asset 4@2x.png │ │ │ ├── Asset 4@3x.png │ │ │ └── Contents.json │ │ ├── add_item_unselected.imageset │ │ │ ├── Asset 1@2x.png │ │ │ ├── Asset 1@3x.png │ │ │ └── Contents.json │ │ ├── avatar.imageset │ │ │ ├── Contents.json │ │ │ └── avatar.png │ │ ├── back_round.imageset │ │ │ ├── Asset 1@2x.png │ │ │ ├── Asset 1@3x.png │ │ │ └── Contents.json │ │ ├── back_triangle.imageset │ │ │ ├── Asset 1@2x.png │ │ │ ├── Asset 1@3x.png │ │ │ └── Contents.json │ │ ├── black_circle_info.imageset │ │ │ ├── Asset 6@2x.png │ │ │ ├── Asset 6@3x.png │ │ │ └── Contents.json │ │ ├── button_checkmark.imageset │ │ │ ├── Contents.json │ │ │ ├── button_checkmark@2x.png │ │ │ └── button_checkmark@3x.png │ │ ├── doordash_logo.imageset │ │ │ ├── Contents.json │ │ │ ├── logo-1.png │ │ │ └── logo.png │ │ ├── drop_down_triangle.imageset │ │ │ ├── Asset 1@3x.png │ │ │ ├── Contents.json │ │ │ └── dropDownTriangle@2x.png │ │ ├── gray_rect_background.imageset │ │ │ ├── Asset 1@3x.png │ │ │ ├── Contents.json │ │ │ └── gray_rect_background@2x.png │ │ ├── gray_round_background.imageset │ │ │ ├── Asset 1@3x.png │ │ │ ├── Contents.json │ │ │ └── grayRoundBackground@2x.png │ │ ├── house_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── House@2x.png │ │ │ └── House@3x.png │ │ ├── icon_close_grey.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_close_grey@2x.png │ │ │ └── icon_close_grey@3x.png │ │ ├── icon_facebook.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_facebook@2x.png │ │ │ └── icon_facebook@3x.png │ │ ├── icon_google.imageset │ │ │ ├── Asset 2@2x.png │ │ │ ├── Asset 2@3x.png │ │ │ └── Contents.json │ │ ├── lightgray_circle_info.imageset │ │ │ ├── Asset 7@2x.png │ │ │ ├── Asset 7@3x.png │ │ │ └── Contents.json │ │ ├── list_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── List@2x.png │ │ │ └── List@3x.png │ │ ├── logo_no_text.imageset │ │ │ ├── Asset 1@2x.png │ │ │ ├── Asset 1@3x.png │ │ │ └── Contents.json │ │ ├── map_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Map@2x.png │ │ │ └── Map@3x.png │ │ ├── map_pin.imageset │ │ │ ├── Contents.json │ │ │ └── pin.png │ │ ├── map_pin_normal.imageset │ │ │ ├── 72@2x.png │ │ │ ├── 72@3x.png │ │ │ └── Contents.json │ │ ├── map_pin_selected.imageset │ │ │ ├── 72@2x.png │ │ │ ├── 72@3x.png │ │ │ └── Contents.json │ │ ├── minus_item.imageset │ │ │ ├── Asset 3@2x.png │ │ │ ├── Asset 3@3x.png │ │ │ └── Contents.json │ │ ├── minus_item_unselected.imageset │ │ │ ├── Asset 2@2x.png │ │ │ ├── Asset 2@3x.png │ │ │ └── Contents.json │ │ ├── my_location.imageset │ │ │ ├── Contents.json │ │ │ ├── Location_2@2x.png │ │ │ └── Location_2@3x.png │ │ ├── onboarding1.imageset │ │ │ ├── Contents.json │ │ │ ├── onboarding1-1.png │ │ │ └── onboarding1.png │ │ ├── onboarding2.imageset │ │ │ ├── Contents.json │ │ │ ├── onboarding2-1.png │ │ │ └── onboarding2.png │ │ ├── onboarding3.imageset │ │ │ ├── Contents.json │ │ │ ├── onboarding3-1.png │ │ │ └── onboarding3.png │ │ ├── onboarding4.imageset │ │ │ ├── Contents.json │ │ │ ├── onboarding4-1.png │ │ │ └── onboarding4.png │ │ ├── onboarding5.imageset │ │ │ ├── Contents.json │ │ │ ├── onboarding5-1.png │ │ │ └── onboarding5.png │ │ ├── order_cart.imageset │ │ │ ├── Contents.json │ │ │ └── cart (1).png │ │ ├── rating_star_empty.imageset │ │ │ ├── Asset 7@2x.png │ │ │ ├── Asset 7@3x.png │ │ │ └── Contents.json │ │ ├── rating_star_full.imageset │ │ │ ├── Asset 6@2x.png │ │ │ ├── Asset 6@3x.png │ │ │ └── Contents.json │ │ ├── right_arrow.imageset │ │ │ ├── Asset 1@2x.png │ │ │ ├── Asset 1@3x.png │ │ │ └── Contents.json │ │ ├── right_arrow_view_all_button.imageset │ │ │ ├── Asset 8@2x.png │ │ │ ├── Asset 8@3x.png │ │ │ └── Contents.json │ │ ├── right_checkmark.imageset │ │ │ ├── Asset 1@3x.png │ │ │ ├── Contents.json │ │ │ └── right_checkmark@2x.png │ │ ├── search_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Search@2x.png │ │ │ └── Search@3x.png │ │ ├── star_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── star_highlighted@2x.png │ │ │ └── star_highlighted@3x.png │ │ ├── star_unhighlighted.imageset │ │ │ ├── Asset 3@2x.png │ │ │ ├── Asset 3@3x.png │ │ │ └── Contents.json │ │ ├── tabbar_1.imageset │ │ │ ├── Contents.json │ │ │ └── tabbar_1@2x.png │ │ ├── tabbar_2.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_2@2x-1.png │ │ │ └── tabbar_2@2x.png │ │ ├── tabbar_4.imageset │ │ │ ├── Asset 7@2x.png │ │ │ └── Contents.json │ │ ├── tabbar_5.imageset │ │ │ ├── Asset 6@2x.png │ │ │ └── Contents.json │ │ ├── tabbar_new_1.imageset │ │ │ ├── Contents.json │ │ │ ├── Off@2x.png │ │ │ └── Off@3x.png │ │ ├── tabbar_new_1_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── On@2x.png │ │ │ └── On@3x.png │ │ ├── tabbar_new_2.imageset │ │ │ ├── Contents.json │ │ │ ├── Off@2x.png │ │ │ └── Off@3x.png │ │ ├── tabbar_new_2_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── On@2x.png │ │ │ └── On@3x.png │ │ ├── tabbar_new_3.imageset │ │ │ ├── Contents.json │ │ │ ├── Off@2x.png │ │ │ └── Off@3x.png │ │ ├── tabbar_new_3_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── On@2x.png │ │ │ └── On@3x.png │ │ ├── tabbar_new_4.imageset │ │ │ ├── Contents.json │ │ │ ├── Off@2x.png │ │ │ └── Off@3x.png │ │ ├── tabbar_new_4_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── On@2x.png │ │ │ └── On@3x.png │ │ ├── tabbar_new_5.imageset │ │ │ ├── Contents.json │ │ │ ├── Off@2x.png │ │ │ └── Off@3x.png │ │ └── tabbar_new_5_selected.imageset │ │ │ ├── Contents.json │ │ │ ├── On@2x.png │ │ │ └── On@3x.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Fonts │ │ ├── .DS_Store │ │ ├── TTNorms-Black.otf │ │ ├── TTNorms-Bold.otf │ │ ├── TTNorms-ExtraBold.otf │ │ ├── TTNorms-Light.otf │ │ ├── TTNorms-Medium.otf │ │ └── TTNorms-Regular.otf │ └── Theme │ │ ├── AppColor.swift │ │ ├── AppFont.swift │ │ ├── AppImage.swift │ │ └── AppTheme.swift └── Tools │ ├── .DS_Store │ ├── Animator │ └── Animator.swift │ ├── CustomizedView │ ├── .DS_Store │ ├── Buttons │ │ ├── GradientButtonView.swift │ │ ├── LTHRadioButton.swift │ │ ├── LoadingButton.swift │ │ ├── MultiSelectionButton.swift │ │ └── RedoSearchButton.swift │ ├── DoordashTextField.swift │ ├── FullScreenPresentableView.swift │ ├── Gradients │ │ └── GradientView.swift │ ├── IconedButton.swift │ ├── InfinityScrollView │ │ ├── IGPreviewPhotoList.swift │ │ ├── ImagePreviewCollectionViewCell.swift │ │ ├── InfiniteScrollCollectionViewFlowLayout.swift │ │ └── InfinitieScrollView.swift │ ├── Labels │ │ └── PaddingLabel.swift │ ├── LargeLoadingIndicator.swift │ ├── LoadingIndicator.swift │ ├── PaymentActivityIndicator │ │ ├── PaymentActivityHUD.swift │ │ └── PaymentActivityView.swift │ ├── SegmentNavigateView │ │ └── SegmentNavigateView.swift │ ├── Separator.swift │ ├── SkeletonLoadingView │ │ ├── SkeletonLoadingTitleTableViewCell.swift │ │ └── SkeletonLoadingView.swift │ └── SortOptionSelectionView │ │ ├── Cells │ │ ├── CollectionFilterContainerView.swift │ │ ├── CollectionFilterItemCell.swift │ │ ├── CollectionFilterSectionController.swift │ │ ├── RatingFilterCell.swift │ │ └── RatingSliderView.swift │ │ ├── Presenter │ │ ├── CollectionFilterItemSectionController.swift │ │ └── RatingFilterSectionController.swift │ │ ├── SortOptionSelectionView.swift │ │ └── SortOptionSelectionViewModel.swift │ ├── DemoVisualizeKit │ ├── CAAnimationGroup+Extensions.swift │ ├── SensorVisualizerWindow+Touch.swift │ ├── SensorVisualizerWindow.swift │ ├── UIAttachmentBehavior+Extensions.swift │ ├── UIPushBehavior+Extensions.swift │ └── UIView+Extensions.swift │ ├── DoordashLocator.swift │ ├── FlowLayout │ ├── CenterCardsCollectionViewFlowLayout.swift │ └── CenterDualCardsCollectionViewFlowLayout.swift │ ├── GlobalFunctions.swift │ ├── GooglePlace │ └── GMAutoCompleteManager.swift │ ├── Location.swift │ ├── MapUtility.swift │ └── Venders │ ├── .DS_Store │ ├── CosmosStarRating │ ├── .DS_Store │ └── CosmosDistrib.swift │ ├── NVActivityIndicatorView │ ├── NVActivityIndicatorAnimationBallClipRotate.swift │ ├── NVActivityIndicatorAnimationCircleStrokeSpin.swift │ ├── NVActivityIndicatorAnimationDelegate.swift │ ├── NVActivityIndicatorShape.swift │ ├── NVActivityIndicatorView.swift │ └── Presenter │ │ ├── NVActivityIndicatorPresenter.swift │ │ └── NVActivityIndicatorViewable.swift │ └── SwiftRichString │ ├── AttributedString+Extension.swift │ ├── Colors.swift │ ├── Extensions.swift │ ├── FontNames.swift │ ├── Imports.swift │ ├── MarkupString.swift │ ├── String+Extension.swift │ ├── StringScanner.swift │ └── Style.swift ├── Fonts └── TTNorms-Regular.otf ├── Podfile ├── Podfile.lock └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/AUTHORS -------------------------------------------------------------------------------- /DoorDash.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DoorDash.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DoorDash.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DoorDash.xcodeproj/project.xcworkspace/xcuserdata/marvinzhan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcodeproj/project.xcworkspace/xcuserdata/marvinzhan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DoorDash.xcodeproj/xcuserdata/marvinzhan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcodeproj/xcuserdata/marvinzhan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DoorDash.xcodeproj/xcuserdata/tengqizhan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcodeproj/xcuserdata/tengqizhan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DoorDash.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DoorDash.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DoorDash.xcworkspace/xcuserdata/marvinzhan.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcworkspace/xcuserdata/marvinzhan.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /DoorDash.xcworkspace/xcuserdata/marvinzhan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcworkspace/xcuserdata/marvinzhan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DoorDash.xcworkspace/xcuserdata/marvinzhan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcworkspace/xcuserdata/marvinzhan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DoorDash.xcworkspace/xcuserdata/tengqizhan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcworkspace/xcuserdata/tengqizhan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DoorDash.xcworkspace/xcuserdata/tengqizhan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash.xcworkspace/xcuserdata/tengqizhan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DoorDash/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/.DS_Store -------------------------------------------------------------------------------- /DoorDash/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/AppDelegate.swift -------------------------------------------------------------------------------- /DoorDash/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Classes/Account/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Coordinators/UserAccountCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Coordinators/UserAccountCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Presenter/AccountAppVersionSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Presenter/AccountAppVersionSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Presenter/AccountDetailsSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Presenter/AccountDetailsSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Presenter/AccountMoreSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Presenter/AccountMoreSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Presenter/AccountNotificationsSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Presenter/AccountNotificationsSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/ViewController/BouncyLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/ViewController/BouncyLayout.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/ViewController/UserAccountViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/ViewController/UserAccountViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/ViewModel/UserAccountViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/ViewModel/UserAccountViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Views/Cells/UserAccountPageSubTitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Views/Cells/UserAccountPageSubTitleCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Views/Cells/UserAccountPageTitleAndToggleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Views/Cells/UserAccountPageTitleAndToggleCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Views/Cells/UserAccountPageTitleAndValueCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Views/Cells/UserAccountPageTitleAndValueCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Views/Cells/UserAccountPageTitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Views/Cells/UserAccountPageTitleCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Views/Cells/UserAccountPageTitleWithDescriptionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Views/Cells/UserAccountPageTitleWithDescriptionCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Account/Views/Cells/UserAccountPageVersionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Account/Views/Cells/UserAccountPageVersionCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/Coordinators/CheckoutCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/Coordinators/CheckoutCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/Presenters/CheckoutDeliveryDetailsSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/Presenters/CheckoutDeliveryDetailsSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/Presenters/CheckoutPaymentSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/Presenters/CheckoutPaymentSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/ViewControllers/CheckoutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/ViewControllers/CheckoutViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/ViewModels/CheckoutViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/ViewModels/CheckoutViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/Views/Cells/CheckoutDasherTipCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/Views/Cells/CheckoutDasherTipCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/Views/Cells/CheckoutDisplayInfoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/Views/Cells/CheckoutDisplayInfoCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/Views/Cells/CheckoutSectionHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/Views/Cells/CheckoutSectionHeaderCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Checkout/Views/Cells/DeliveryDetailsMapCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Checkout/Views/Cells/DeliveryDetailsMapCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Coordinator/SelectAddressCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Coordinator/SelectAddressCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Presenters/AddressTextLabelSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Presenters/AddressTextLabelSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Presenters/ConfirmAddressSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Presenters/ConfirmAddressSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Presenters/EnterAddressSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Presenters/EnterAddressSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Presenters/RefineAddressSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Presenters/RefineAddressSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/ViewController/ConfirmAddressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/ViewController/ConfirmAddressViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/ViewController/RefineLocationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/ViewController/RefineLocationViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/ViewController/SelectAddressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/ViewController/SelectAddressViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/ViewModel/ConfirmAddressViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/ViewModel/ConfirmAddressViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/ViewModel/SelectAddressViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/ViewModel/SelectAddressViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/Cells/AddressTextLabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/Cells/AddressTextLabelCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/Cells/ConfirmAddressMapCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/Cells/ConfirmAddressMapCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/Cells/ConfirmAddressTitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/Cells/ConfirmAddressTitleCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/Cells/DasherInstructionsInputCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/Cells/DasherInstructionsInputCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/Cells/EnterAddressCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/Cells/EnterAddressCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/Cells/RefineAddressMapCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/Cells/RefineAddressMapCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/Cells/RefineLocationTitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/Cells/RefineLocationTitleCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/HeaderTextLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/HeaderTextLabelView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/InputApartmentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/InputApartmentView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Address/Views/NavigationAddressHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Address/Views/NavigationAddressHeaderView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/AddCard/Coordinators/AddPaymentCardCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/AddCard/Coordinators/AddPaymentCardCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/AddCard/ViewControllers/AddPaymentCardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/AddCard/ViewControllers/AddPaymentCardViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/AddCard/ViewModels/AddPaymentCardViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/AddCard/ViewModels/AddPaymentCardViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/PaymentMethods/New Group/PaymentMethodsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/PaymentMethods/New Group/PaymentMethodsCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/PaymentMethods/Presenters/PaymentMethodSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/PaymentMethods/Presenters/PaymentMethodSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/PaymentMethods/ViewControllers/PaymentMethodsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/PaymentMethods/ViewControllers/PaymentMethodsViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/PaymentMethods/ViewModels/PaymentMethodsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/PaymentMethods/ViewModels/PaymentMethodsViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/PaymentMethods/Views/Cells/PaymentMethodCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/PaymentMethods/Views/Cells/PaymentMethodCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/Payment/PaymentMethods/Views/Cells/PaymentMethodsPageTitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/Payment/PaymentMethods/Views/Cells/PaymentMethodsPageTitleCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Coordinator/SearchAddressCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Coordinator/SearchAddressCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Interactor/SearchAddressInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Interactor/SearchAddressInteractor.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SearchAddressPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SearchAddressPresenter.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/BaseSearchAddressSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/BaseSearchAddressSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/ConfirmActionSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/ConfirmActionSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/EnterAddressInputSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/EnterAddressInputSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/EnterAddressMapSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/EnterAddressMapSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/SearchAddressEmptyResultSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/SearchAddressEmptyResultSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/SearchAddressInputSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/SearchAddressInputSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/SearchAddressItemSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/SearchAddressItemSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/SearchAddressItemsSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/Presenter/SectionController/SearchAddressItemsSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/View/Cells/ConfirmAddressButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/View/Cells/ConfirmAddressButtonCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/View/Cells/EnterAddressInputCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/View/Cells/EnterAddressInputCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressEmptyResultCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressEmptyResultCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressInputCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressInputCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressItemCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressResultMapCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressResultMapCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressSectionFooterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/View/Cells/SearchAddressSectionFooterCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Common/SearchAddress/ViewController/SearchAddressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Common/SearchAddress/ViewController/SearchAddressViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Drink/Coordinators/BrowseDrinkCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Drink/Coordinators/BrowseDrinkCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Drink/ViewControllers/BrowseDrinkViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Drink/ViewControllers/BrowseDrinkViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/Presenters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/Presenters/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/Presenters/AllStores/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/Presenters/AllStores/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/Presenters/AllStores/BrowseFoodAllStoreHeaderSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/Presenters/AllStores/BrowseFoodAllStoreHeaderSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/Presenters/AllStores/BrowseFoodStoreMenuDisplaySectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/Presenters/AllStores/BrowseFoodStoreMenuDisplaySectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/Presenters/AllStores/SingleStoreSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/Presenters/AllStores/SingleStoreSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/ViewControllers/BaseSearchAllStoresViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/ViewControllers/BaseSearchAllStoresViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/ViewModel/BrowseFoodPresenterModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/ViewModel/BrowseFoodPresenterModels.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/ViewModel/PresentableViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/ViewModel/PresentableViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/Views/Cells/AllStores/BrowseFoodStoreDispalyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/Views/Cells/AllStores/BrowseFoodStoreDispalyCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/Common/Views/Cells/AllStores/BrowseFoodStoreMenuImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/Common/Views/Cells/AllStores/BrowseFoodStoreMenuImageCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/Coordinators/CuisineAllStoresCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/Coordinators/CuisineAllStoresCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/ViewControllers/CuisineAllStoresViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/ViewControllers/CuisineAllStoresViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/ViewModels/CuisineAllStoresViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/ViewModels/CuisineAllStoresViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/LOTStyle/AnimatedCuisineCarouselCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/LOTStyle/AnimatedCuisineCarouselCollectionViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/LOTStyle/AnimatedCuisineItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/LOTStyle/AnimatedCuisineItemCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/LOTStyle/HorizontalCarouselCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/LOTStyle/HorizontalCarouselCollectionViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/StaticStyle/CuisineCarouselCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/StaticStyle/CuisineCarouselCollectionViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/StaticStyle/CuisineCarouselPageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/StaticStyle/CuisineCarouselPageCollectionViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/StaticStyle/CuisineItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuisineAllStores/Views/Cells/CuisineCarousel/StaticStyle/CuisineItemCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuratedCategoryAllStores/Coordinators/CuratedCategoryAllStoresCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuratedCategoryAllStores/Coordinators/CuratedCategoryAllStoresCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuratedCategoryAllStores/ViewControllers/CuratedCategoryAllStoresViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuratedCategoryAllStores/ViewControllers/CuratedCategoryAllStoresViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/CuratedCategoryAllStores/ViewModels/CuratedCategoryAllStoresViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/CuratedCategoryAllStores/ViewModels/CuratedCategoryAllStoresViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Coordinators/BrowseFoodTabCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Coordinators/BrowseFoodTabCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/LOTStyle/AnimatedCuisineCarouselSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/LOTStyle/AnimatedCuisineCarouselSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/LOTStyle/AnimatedCuisineItemSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/LOTStyle/AnimatedCuisineItemSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/StaticStyle/CuisineCarouselPageSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/StaticStyle/CuisineCarouselPageSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/StaticStyle/CuisineCarouselSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/StaticStyle/CuisineCarouselSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/StaticStyle/CuisineItemSectonController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/CuisineCarousel/StaticStyle/CuisineItemSectonController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/StoreCarousel/CuratedCategoryHeaderSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/StoreCarousel/CuratedCategoryHeaderSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/StoreCarousel/StoreCarouselSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/StoreCarousel/StoreCarouselSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/StoreCarousel/StoreHorizontalCarouselItemSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/StoreCarousel/StoreHorizontalCarouselItemSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/StoreCarousel/StoreHorizontalCarouselSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/StoreCarousel/StoreHorizontalCarouselSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/StoreSort/StoreSortHorizontalSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/StoreSort/StoreSortHorizontalSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Presenters/StoreSort/StoreSortItemSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Presenters/StoreSort/StoreSortItemSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/ViewControllers/BrowseFoodViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/ViewControllers/BrowseFoodViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/ViewModels/BrowseFoodViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/ViewModels/BrowseFoodViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/DynamicHeightNavigation/BrowsePageNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/DynamicHeightNavigation/BrowsePageNavigationBar.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/DynamicHeightNavigation/DynamicHeightNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/DynamicHeightNavigation/DynamicHeightNavigationBar.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/HeaderView/BrowseFoodAllStoresHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/HeaderView/BrowseFoodAllStoresHeaderView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/HeaderView/BrowseFoodHeaderWithSubTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/HeaderView/BrowseFoodHeaderWithSubTitleView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/HeaderView/BrowseFoodSectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/HeaderView/BrowseFoodSectionHeaderView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/HeaderView/CuratedCategoryHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/HeaderView/CuratedCategoryHeaderCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/Sort/StoreSortBaseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/Sort/StoreSortBaseCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/Sort/StoreSortBinaryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/Sort/StoreSortBinaryCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/Sort/StoreSortPriceRangeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/Sort/StoreSortPriceRangeCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/Sort/StoreSortRatingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/Sort/StoreSortRatingCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselDisplayCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselDisplayCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselFooterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselFooterCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselLargeDisplayCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselLargeDisplayCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselTwoStoresCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselTwoStoresCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselViewAllCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreCarouselViewAllCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreHorizontalCarouselCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/HomePage/Views/StoreCarousel/StoreHorizontalCarouselCollectionViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Coordinators/StoreDetailCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Coordinators/StoreDetailCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Presenters/StoreDetailMenuSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Presenters/StoreDetailMenuSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Presenters/StoreDetailOverviewSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Presenters/StoreDetailOverviewSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Presenters/StoreDetailSwitchMenuSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Presenters/StoreDetailSwitchMenuSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/ViewControllers/StoreDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/ViewControllers/StoreDetailViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/ViewModels/StoreDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/ViewModels/StoreDetailViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailDeliveryInfoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailDeliveryInfoCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailMenuHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailMenuHeaderCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailMenuItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailMenuItemCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailMenuNavigatorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailMenuNavigatorCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailMenuSeparatorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailMenuSeparatorCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailOverviewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailOverviewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailSwitchMenuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Food/StoreDetail/Views/Cells/StoreDetailSwitchMenuCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Coordinators/ItemDetailInfoCoordinator.swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Coordinators/ItemDetailInfoCoordinator.swift.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Presenters/ItemDetailAddInstructionSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Presenters/ItemDetailAddInstructionSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Presenters/ItemDetailMultipleChoiceSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Presenters/ItemDetailMultipleChoiceSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Presenters/ItemDetailOverviewSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Presenters/ItemDetailOverviewSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Presenters/ItemDetailSelectQuantitySectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Presenters/ItemDetailSelectQuantitySectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/ViewControllers/ItemDetailInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/ViewControllers/ItemDetailInfoViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/ViewModels/ItemDetailInfoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/ViewModels/ItemDetailInfoViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Views/AdjustItemQuantityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Views/AdjustItemQuantityView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailAddInstructionsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailAddInstructionsCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailOptionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailOptionCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailOptionHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailOptionHeaderCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailOverviewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailOverviewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailSelectNumberCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Views/Cells/ItemDetailSelectNumberCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/ItemDetail/Views/OrderTwoTitlesButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/ItemDetail/Views/OrderTwoTitlesButton.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Coordinators/OnboardingCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Coordinators/OnboardingCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Presenter/HorizontalSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Presenter/HorizontalSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Presenter/OnboardingItemSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Presenter/OnboardingItemSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Presenter/SignInputFormSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Presenter/SignInputFormSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Presenter/SignupAgreementSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Presenter/SignupAgreementSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Presenter/SignupButtonSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Presenter/SignupButtonSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Presenter/SocialLoginSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Presenter/SocialLoginSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/ViewController/LaunchLoadingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/ViewController/LaunchLoadingViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/ViewController/OnboardingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/ViewController/OnboardingViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/ViewController/SignupHomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/ViewController/SignupHomeViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/ViewModel/OnboardingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/ViewModel/OnboardingViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/ViewModel/SignupHomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/ViewModel/SignupHomeViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Views/Cells/HorizontalScrollCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Views/Cells/HorizontalScrollCollectionViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Views/Cells/InputFormCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Views/Cells/InputFormCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Views/Cells/OnboardingItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Views/Cells/OnboardingItemCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Views/Cells/SignupAgreementCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Views/Cells/SignupAgreementCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Views/Cells/SignupButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Views/Cells/SignupButtonCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Views/Cells/SocialLoginCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Views/Cells/SocialLoginCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Views/LoginComponentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Views/LoginComponentView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Onboarding/Views/SignupHomeNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Onboarding/Views/SignupHomeNavigationBar.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Coordinators/OrderCartCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Coordinators/OrderCartCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Presenters/OrderCartAddMoreItemsSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Presenters/OrderCartAddMoreItemsSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Presenters/OrderCartEmptyDataSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Presenters/OrderCartEmptyDataSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Presenters/OrderCartItemSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Presenters/OrderCartItemSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Presenters/OrderCartPriceDisplaySectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Presenters/OrderCartPriceDisplaySectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Presenters/OrderCartPromoCodeSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Presenters/OrderCartPromoCodeSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/ViewControllers/OrderCartViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/ViewControllers/OrderCartViewController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/ViewModels/OrderCartViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/ViewModels/OrderCartViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Views/Cells/EmptyCartCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Views/Cells/EmptyCartCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Views/Cells/OrderCartAddMoreItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Views/Cells/OrderCartAddMoreItemCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Views/Cells/OrderCartItemCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Views/Cells/OrderCartItemCollectionViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Views/Cells/OrderCartPriceDisplayCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Views/Cells/OrderCartPriceDisplayCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Views/Cells/OrderCartPromoCodeItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Views/Cells/OrderCartPromoCodeItemCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Views/Cells/OrderCartPromoHintCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Views/Cells/OrderCartPromoHintCell.swift -------------------------------------------------------------------------------- /DoorDash/Classes/OrderCart/Views/OrderCartThumbnailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/OrderCart/Views/OrderCartThumbnailView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/Coordinator/PickupMapCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/Coordinator/PickupMapCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/Coordinator/PickupMapTabCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/Coordinator/PickupMapTabCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/Interactor/PickupMapInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/Interactor/PickupMapInteractor.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/Interactor/StoreMapPinModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/Interactor/StoreMapPinModel.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/Presenter/PickupMapPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/Presenter/PickupMapPresenter.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/View/Banner/PickupMapBannerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/View/Banner/PickupMapBannerController.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/View/Banner/PickupMapBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/View/Banner/PickupMapBannerView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/View/PickupMapListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/View/PickupMapListView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/View/PickupMapTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/View/PickupMapTitleView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/View/StoreMapPinView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/View/StoreMapPinView.swift -------------------------------------------------------------------------------- /DoorDash/Classes/Pickup/ViewController/PickupMapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Classes/Pickup/ViewController/PickupMapViewController.swift -------------------------------------------------------------------------------- /DoorDash/Coordinator/AppTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Coordinator/AppTracker.swift -------------------------------------------------------------------------------- /DoorDash/Coordinator/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Coordinator/Coordinator.swift -------------------------------------------------------------------------------- /DoorDash/Coordinator/CustomNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Coordinator/CustomNavigationBar.swift -------------------------------------------------------------------------------- /DoorDash/Coordinator/InteractivePopRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Coordinator/InteractivePopRecognizer.swift -------------------------------------------------------------------------------- /DoorDash/Coordinator/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Coordinator/Router.swift -------------------------------------------------------------------------------- /DoorDash/Core/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Core/ApplicationDependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ApplicationDependency.swift -------------------------------------------------------------------------------- /DoorDash/Core/ApplicationEnvironment/ApplicationEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ApplicationEnvironment/ApplicationEnvironment.swift -------------------------------------------------------------------------------- /DoorDash/Core/ApplicationEnvironment/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ApplicationEnvironment/Environment.swift -------------------------------------------------------------------------------- /DoorDash/Core/ApplicationSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ApplicationSettings.swift -------------------------------------------------------------------------------- /DoorDash/Core/Authentication/AuthToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Authentication/AuthToken.swift -------------------------------------------------------------------------------- /DoorDash/Core/Authentication/Authentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Authentication/Authentication.swift -------------------------------------------------------------------------------- /DoorDash/Core/CartManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/CartManager.swift -------------------------------------------------------------------------------- /DoorDash/Core/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Constants.swift -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/Cache/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/Cache/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/Cache/ApplicationCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/Cache/ApplicationCache.swift -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/Cache/CacheKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/Cache/CacheKeys.swift -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/Cache/KeyValueStoreType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/Cache/KeyValueStoreType.swift -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/CoreData/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/CoreData/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/CoreData/CoreModelVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/CoreData/CoreModelVersion.swift -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/CoreData/DataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/CoreData/DataStore.swift -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/CoreData/PersistentModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/CoreData/PersistentModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/CoreData/Schema/DoorDash.xcdatamodeld/DoorDash.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/CoreData/Schema/DoorDash.xcdatamodeld/DoorDash.xcdatamodel/contents -------------------------------------------------------------------------------- /DoorDash/Core/DataStorage/CoreData/Schema/UWLife.xcdatamodeld/UWLife.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/DataStorage/CoreData/Schema/UWLife.xcdatamodeld/UWLife.xcdatamodel/contents -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/CoreComponents/AuthenticateRequestAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/CoreComponents/AuthenticateRequestAdapter.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/CoreComponents/NetworkConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/CoreComponents/NetworkConfiguration.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/CoreComponents/SessionManager+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/CoreComponents/SessionManager+Extension.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Models/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Models/Error.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Models/FetchCartRequestModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Models/FetchCartRequestModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Models/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Models/Filter.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Models/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Models/ParameterEncoding.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Models/SignupTempAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Models/SignupTempAccount.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/NetworkGlobalFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/NetworkGlobalFunction.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/ResponseModel/UserAddressesResponseModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/ResponseModel/UserAddressesResponseModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/ResponseModel/UserResponseModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/ResponseModel/UserResponseModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/BrowseFoodAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/BrowseFoodAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/CartAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/CartAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/DirectionAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/DirectionAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/DoorDashAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/DoorDashAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/GooglePlaceAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/GooglePlaceAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/PaymentAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/PaymentAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/SearchStoreDetailAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/SearchStoreDetailAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/SearchStoreItemAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/SearchStoreItemAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Endpoints/Services/UserAPIService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Endpoints/Services/UserAPIService.swift -------------------------------------------------------------------------------- /DoorDash/Core/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Logger/Logger.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/BrowseFoodMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/BrowseFoodMainView.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/Cart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/Cart.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/CartThumbnail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/CartThumbnail.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/DeliveryAddress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/DeliveryAddress.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/GMPrediction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/GMPrediction.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/MenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/MenuItem.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/Money.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/Money.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/PaymentMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/PaymentMethod.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/Store.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/StoreMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/StoreMenu.swift -------------------------------------------------------------------------------- /DoorDash/Core/Models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Models/User.swift -------------------------------------------------------------------------------- /DoorDash/Core/Validation/ValidationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/Validation/ValidationService.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/CartViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/CartViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/MenuCategoryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/MenuCategoryViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/MenuItemExtraViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/MenuItemExtraViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/MenuItemOptionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/MenuItemOptionViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/MenuItemViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/MenuItemViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/PaymentMethodViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/PaymentMethodViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/StoreListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/StoreListViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/StoreMenuViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/StoreMenuViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Core/ViewModels/StoreViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Core/ViewModels/StoreViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Extension/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Extension/Foundation/Bundle+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/Foundation/Bundle+.swift -------------------------------------------------------------------------------- /DoorDash/Extension/Foundation/Collection+SafeAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/Foundation/Collection+SafeAccess.swift -------------------------------------------------------------------------------- /DoorDash/Extension/Foundation/Device.generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/Foundation/Device.generated.swift -------------------------------------------------------------------------------- /DoorDash/Extension/Foundation/Dictionary+Operations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/Foundation/Dictionary+Operations.swift -------------------------------------------------------------------------------- /DoorDash/Extension/Foundation/Double+Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/Foundation/Double+Format.swift -------------------------------------------------------------------------------- /DoorDash/Extension/Foundation/Foundation+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/Foundation/Foundation+.swift -------------------------------------------------------------------------------- /DoorDash/Extension/Foundation/String+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/Foundation/String+Size.swift -------------------------------------------------------------------------------- /DoorDash/Extension/Foundation/UserDefaults+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/Foundation/UserDefaults+.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/CGRect+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/CGRect+.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/Date+Interval.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/Date+Interval.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/Date+Weekdays.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/Date+Weekdays.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UIBarButtonItem+Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UIBarButtonItem+Empty.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UICollectionView+Deque.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UICollectionView+Deque.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UIColor+Gradient+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UIColor+Gradient+Hex.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UIFont+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UIFont+Size.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UIImageView+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UIImageView+Color.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UIImageView+SDWebImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UIImageView+SDWebImage.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UILabel+NumOfLines.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UILabel+NumOfLines.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UINavigationBar+Separator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UINavigationBar+Separator.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UIView+Border.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UIView+Border.swift -------------------------------------------------------------------------------- /DoorDash/Extension/UIKit/UIView+Shadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Extension/UIKit/UIView+Shadow.swift -------------------------------------------------------------------------------- /DoorDash/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Info.plist -------------------------------------------------------------------------------- /DoorDash/Main/Base/BaseListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Main/Base/BaseListViewController.swift -------------------------------------------------------------------------------- /DoorDash/Main/Base/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Main/Base/BaseViewController.swift -------------------------------------------------------------------------------- /DoorDash/Main/Coordinators/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Main/Coordinators/AppCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Main/Coordinators/ContentCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Main/Coordinators/ContentCoordinator.swift -------------------------------------------------------------------------------- /DoorDash/Main/DoorDashNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Main/DoorDashNavigationController.swift -------------------------------------------------------------------------------- /DoorDash/Main/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Main/MainTabBarController.swift -------------------------------------------------------------------------------- /DoorDash/Main/ViewModel/MainTabBarViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Main/ViewModel/MainTabBarViewModel.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/.DS_Store -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/Extensions/DelieveryAddress+Persistent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/Extensions/DelieveryAddress+Persistent.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/Extensions/District+Persistent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/Extensions/District+Persistent.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/Extensions/Store+Persistent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/Extensions/Store+Persistent.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/Extensions/User+Persistent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/Extensions/User+Persistent.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSDeliveryAddress/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSDeliveryAddress/.DS_Store -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSDeliveryAddress/PSDeliveryAddress+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSDeliveryAddress/PSDeliveryAddress+CoreDataClass.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSDeliveryAddress/PSDeliveryAddress+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSDeliveryAddress/PSDeliveryAddress+CoreDataProperties.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSDistrict/PSDistrict+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSDistrict/PSDistrict+CoreDataClass.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSDistrict/PSDistrict+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSDistrict/PSDistrict+CoreDataProperties.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSStore/PSStore+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSStore/PSStore+CoreDataClass.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSStore/PSStore+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSStore/PSStore+CoreDataProperties.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSUser/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSUser/.DS_Store -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSUser/PSUser+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSUser/PSUser+CoreDataClass.swift -------------------------------------------------------------------------------- /DoorDash/PersistentDataStore/PSUser/PSUser+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/PersistentDataStore/PSUser/PSUser+CoreDataProperties.swift -------------------------------------------------------------------------------- /DoorDash/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/add_item.imageset/Asset 4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/add_item.imageset/Asset 4@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/add_item.imageset/Asset 4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/add_item.imageset/Asset 4@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/add_item.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/add_item.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/add_item_unselected.imageset/Asset 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/add_item_unselected.imageset/Asset 1@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/add_item_unselected.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/add_item_unselected.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/add_item_unselected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/add_item_unselected.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/avatar.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/avatar.imageset/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/avatar.imageset/avatar.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/back_round.imageset/Asset 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/back_round.imageset/Asset 1@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/back_round.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/back_round.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/back_round.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/back_round.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/back_triangle.imageset/Asset 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/back_triangle.imageset/Asset 1@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/back_triangle.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/back_triangle.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/back_triangle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/back_triangle.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/black_circle_info.imageset/Asset 6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/black_circle_info.imageset/Asset 6@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/black_circle_info.imageset/Asset 6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/black_circle_info.imageset/Asset 6@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/black_circle_info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/black_circle_info.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/button_checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/button_checkmark.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/button_checkmark.imageset/button_checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/button_checkmark.imageset/button_checkmark@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/button_checkmark.imageset/button_checkmark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/button_checkmark.imageset/button_checkmark@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/doordash_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/doordash_logo.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/doordash_logo.imageset/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/doordash_logo.imageset/logo-1.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/doordash_logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/doordash_logo.imageset/logo.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/drop_down_triangle.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/drop_down_triangle.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/drop_down_triangle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/drop_down_triangle.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/drop_down_triangle.imageset/dropDownTriangle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/drop_down_triangle.imageset/dropDownTriangle@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/gray_rect_background.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/gray_rect_background.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/gray_rect_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/gray_rect_background.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/gray_rect_background.imageset/gray_rect_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/gray_rect_background.imageset/gray_rect_background@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/gray_round_background.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/gray_round_background.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/gray_round_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/gray_round_background.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/gray_round_background.imageset/grayRoundBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/gray_round_background.imageset/grayRoundBackground@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/house_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/house_icon.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/house_icon.imageset/House@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/house_icon.imageset/House@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/house_icon.imageset/House@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/house_icon.imageset/House@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_close_grey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_close_grey.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_close_grey.imageset/icon_close_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_close_grey.imageset/icon_close_grey@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_close_grey.imageset/icon_close_grey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_close_grey.imageset/icon_close_grey@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_facebook.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_facebook.imageset/icon_facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_facebook.imageset/icon_facebook@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_facebook.imageset/icon_facebook@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_facebook.imageset/icon_facebook@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_google.imageset/Asset 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_google.imageset/Asset 2@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_google.imageset/Asset 2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_google.imageset/Asset 2@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/icon_google.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/icon_google.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/lightgray_circle_info.imageset/Asset 7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/lightgray_circle_info.imageset/Asset 7@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/lightgray_circle_info.imageset/Asset 7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/lightgray_circle_info.imageset/Asset 7@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/lightgray_circle_info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/lightgray_circle_info.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/list_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/list_icon.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/list_icon.imageset/List@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/list_icon.imageset/List@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/list_icon.imageset/List@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/list_icon.imageset/List@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/logo_no_text.imageset/Asset 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/logo_no_text.imageset/Asset 1@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/logo_no_text.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/logo_no_text.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/logo_no_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/logo_no_text.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_icon.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_icon.imageset/Map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_icon.imageset/Map@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_icon.imageset/Map@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_icon.imageset/Map@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_pin.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_pin.imageset/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_pin.imageset/pin.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_pin_normal.imageset/72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_pin_normal.imageset/72@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_pin_normal.imageset/72@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_pin_normal.imageset/72@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_pin_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_pin_normal.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_pin_selected.imageset/72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_pin_selected.imageset/72@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_pin_selected.imageset/72@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_pin_selected.imageset/72@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/map_pin_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/map_pin_selected.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/minus_item.imageset/Asset 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/minus_item.imageset/Asset 3@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/minus_item.imageset/Asset 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/minus_item.imageset/Asset 3@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/minus_item.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/minus_item.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/minus_item_unselected.imageset/Asset 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/minus_item_unselected.imageset/Asset 2@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/minus_item_unselected.imageset/Asset 2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/minus_item_unselected.imageset/Asset 2@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/minus_item_unselected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/minus_item_unselected.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/my_location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/my_location.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/my_location.imageset/Location_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/my_location.imageset/Location_2@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/my_location.imageset/Location_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/my_location.imageset/Location_2@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding1.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding1.imageset/onboarding1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding1.imageset/onboarding1-1.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding1.imageset/onboarding1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding1.imageset/onboarding1.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding2.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding2.imageset/onboarding2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding2.imageset/onboarding2-1.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding2.imageset/onboarding2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding2.imageset/onboarding2.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding3.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding3.imageset/onboarding3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding3.imageset/onboarding3-1.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding3.imageset/onboarding3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding3.imageset/onboarding3.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding4.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding4.imageset/onboarding4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding4.imageset/onboarding4-1.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding4.imageset/onboarding4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding4.imageset/onboarding4.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding5.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding5.imageset/onboarding5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding5.imageset/onboarding5-1.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/onboarding5.imageset/onboarding5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/onboarding5.imageset/onboarding5.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/order_cart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/order_cart.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/order_cart.imageset/cart (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/order_cart.imageset/cart (1).png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/rating_star_empty.imageset/Asset 7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/rating_star_empty.imageset/Asset 7@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/rating_star_empty.imageset/Asset 7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/rating_star_empty.imageset/Asset 7@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/rating_star_empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/rating_star_empty.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/rating_star_full.imageset/Asset 6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/rating_star_full.imageset/Asset 6@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/rating_star_full.imageset/Asset 6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/rating_star_full.imageset/Asset 6@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/rating_star_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/rating_star_full.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_arrow.imageset/Asset 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_arrow.imageset/Asset 1@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_arrow.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_arrow.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_arrow_view_all_button.imageset/Asset 8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_arrow_view_all_button.imageset/Asset 8@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_arrow_view_all_button.imageset/Asset 8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_arrow_view_all_button.imageset/Asset 8@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_arrow_view_all_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_arrow_view_all_button.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_checkmark.imageset/Asset 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_checkmark.imageset/Asset 1@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_checkmark.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/right_checkmark.imageset/right_checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/right_checkmark.imageset/right_checkmark@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/search_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/search_icon.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/search_icon.imageset/Search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/search_icon.imageset/Search@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/search_icon.imageset/Search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/search_icon.imageset/Search@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/star_highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/star_highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/star_highlighted.imageset/star_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/star_highlighted.imageset/star_highlighted@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/star_highlighted.imageset/star_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/star_highlighted.imageset/star_highlighted@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/star_unhighlighted.imageset/Asset 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/star_unhighlighted.imageset/Asset 3@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/star_unhighlighted.imageset/Asset 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/star_unhighlighted.imageset/Asset 3@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/star_unhighlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/star_unhighlighted.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_1.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_1.imageset/tabbar_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_1.imageset/tabbar_1@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_2.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_2.imageset/tabbar_2@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_2.imageset/tabbar_2@2x-1.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_2.imageset/tabbar_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_2.imageset/tabbar_2@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_4.imageset/Asset 7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_4.imageset/Asset 7@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_4.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_5.imageset/Asset 6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_5.imageset/Asset 6@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_5.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_1.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_1.imageset/Off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_1.imageset/Off@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_1.imageset/Off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_1.imageset/Off@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_1_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_1_selected.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_1_selected.imageset/On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_1_selected.imageset/On@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_1_selected.imageset/On@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_1_selected.imageset/On@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_2.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_2.imageset/Off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_2.imageset/Off@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_2.imageset/Off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_2.imageset/Off@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_2_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_2_selected.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_2_selected.imageset/On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_2_selected.imageset/On@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_2_selected.imageset/On@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_2_selected.imageset/On@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_3.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_3.imageset/Off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_3.imageset/Off@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_3.imageset/Off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_3.imageset/Off@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_3_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_3_selected.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_3_selected.imageset/On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_3_selected.imageset/On@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_3_selected.imageset/On@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_3_selected.imageset/On@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_4.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_4.imageset/Off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_4.imageset/Off@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_4.imageset/Off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_4.imageset/Off@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_4_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_4_selected.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_4_selected.imageset/On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_4_selected.imageset/On@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_4_selected.imageset/On@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_4_selected.imageset/On@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_5.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_5.imageset/Off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_5.imageset/Off@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_5.imageset/Off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_5.imageset/Off@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_5_selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_5_selected.imageset/Contents.json -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_5_selected.imageset/On@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_5_selected.imageset/On@2x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Assets.xcassets/tabbar_new_5_selected.imageset/On@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Assets.xcassets/tabbar_new_5_selected.imageset/On@3x.png -------------------------------------------------------------------------------- /DoorDash/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DoorDash/Resources/Fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Fonts/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Resources/Fonts/TTNorms-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Fonts/TTNorms-Black.otf -------------------------------------------------------------------------------- /DoorDash/Resources/Fonts/TTNorms-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Fonts/TTNorms-Bold.otf -------------------------------------------------------------------------------- /DoorDash/Resources/Fonts/TTNorms-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Fonts/TTNorms-ExtraBold.otf -------------------------------------------------------------------------------- /DoorDash/Resources/Fonts/TTNorms-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Fonts/TTNorms-Light.otf -------------------------------------------------------------------------------- /DoorDash/Resources/Fonts/TTNorms-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Fonts/TTNorms-Medium.otf -------------------------------------------------------------------------------- /DoorDash/Resources/Fonts/TTNorms-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Fonts/TTNorms-Regular.otf -------------------------------------------------------------------------------- /DoorDash/Resources/Theme/AppColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Theme/AppColor.swift -------------------------------------------------------------------------------- /DoorDash/Resources/Theme/AppFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Theme/AppFont.swift -------------------------------------------------------------------------------- /DoorDash/Resources/Theme/AppImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Theme/AppImage.swift -------------------------------------------------------------------------------- /DoorDash/Resources/Theme/AppTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Resources/Theme/AppTheme.swift -------------------------------------------------------------------------------- /DoorDash/Tools/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Tools/Animator/Animator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Animator/Animator.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/Buttons/GradientButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/Buttons/GradientButtonView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/Buttons/LTHRadioButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/Buttons/LTHRadioButton.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/Buttons/LoadingButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/Buttons/LoadingButton.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/Buttons/MultiSelectionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/Buttons/MultiSelectionButton.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/Buttons/RedoSearchButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/Buttons/RedoSearchButton.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/DoordashTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/DoordashTextField.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/FullScreenPresentableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/FullScreenPresentableView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/Gradients/GradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/Gradients/GradientView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/IconedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/IconedButton.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/InfinityScrollView/IGPreviewPhotoList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/InfinityScrollView/IGPreviewPhotoList.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/InfinityScrollView/ImagePreviewCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/InfinityScrollView/ImagePreviewCollectionViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/InfinityScrollView/InfiniteScrollCollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/InfinityScrollView/InfiniteScrollCollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/InfinityScrollView/InfinitieScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/InfinityScrollView/InfinitieScrollView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/Labels/PaddingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/Labels/PaddingLabel.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/LargeLoadingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/LargeLoadingIndicator.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/LoadingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/LoadingIndicator.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/PaymentActivityIndicator/PaymentActivityHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/PaymentActivityIndicator/PaymentActivityHUD.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/PaymentActivityIndicator/PaymentActivityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/PaymentActivityIndicator/PaymentActivityView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SegmentNavigateView/SegmentNavigateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SegmentNavigateView/SegmentNavigateView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/Separator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/Separator.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SkeletonLoadingView/SkeletonLoadingTitleTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SkeletonLoadingView/SkeletonLoadingTitleTableViewCell.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SkeletonLoadingView/SkeletonLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SkeletonLoadingView/SkeletonLoadingView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/CollectionFilterContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/CollectionFilterContainerView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/CollectionFilterItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/CollectionFilterItemCell.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/CollectionFilterSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/CollectionFilterSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/RatingFilterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/RatingFilterCell.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/RatingSliderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/Cells/RatingSliderView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/Presenter/CollectionFilterItemSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/Presenter/CollectionFilterItemSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/Presenter/RatingFilterSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/Presenter/RatingFilterSectionController.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/SortOptionSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/SortOptionSelectionView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/CustomizedView/SortOptionSelectionView/SortOptionSelectionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/CustomizedView/SortOptionSelectionView/SortOptionSelectionViewModel.swift -------------------------------------------------------------------------------- /DoorDash/Tools/DemoVisualizeKit/CAAnimationGroup+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/DemoVisualizeKit/CAAnimationGroup+Extensions.swift -------------------------------------------------------------------------------- /DoorDash/Tools/DemoVisualizeKit/SensorVisualizerWindow+Touch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/DemoVisualizeKit/SensorVisualizerWindow+Touch.swift -------------------------------------------------------------------------------- /DoorDash/Tools/DemoVisualizeKit/SensorVisualizerWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/DemoVisualizeKit/SensorVisualizerWindow.swift -------------------------------------------------------------------------------- /DoorDash/Tools/DemoVisualizeKit/UIAttachmentBehavior+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/DemoVisualizeKit/UIAttachmentBehavior+Extensions.swift -------------------------------------------------------------------------------- /DoorDash/Tools/DemoVisualizeKit/UIPushBehavior+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/DemoVisualizeKit/UIPushBehavior+Extensions.swift -------------------------------------------------------------------------------- /DoorDash/Tools/DemoVisualizeKit/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/DemoVisualizeKit/UIView+Extensions.swift -------------------------------------------------------------------------------- /DoorDash/Tools/DoordashLocator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/DoordashLocator.swift -------------------------------------------------------------------------------- /DoorDash/Tools/FlowLayout/CenterCardsCollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/FlowLayout/CenterCardsCollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /DoorDash/Tools/FlowLayout/CenterDualCardsCollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/FlowLayout/CenterDualCardsCollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /DoorDash/Tools/GlobalFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/GlobalFunctions.swift -------------------------------------------------------------------------------- /DoorDash/Tools/GooglePlace/GMAutoCompleteManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/GooglePlace/GMAutoCompleteManager.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Location.swift -------------------------------------------------------------------------------- /DoorDash/Tools/MapUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/MapUtility.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/CosmosStarRating/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/CosmosStarRating/.DS_Store -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/CosmosStarRating/CosmosDistrib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/CosmosStarRating/CosmosDistrib.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorAnimationBallClipRotate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorAnimationBallClipRotate.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorAnimationCircleStrokeSpin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorAnimationCircleStrokeSpin.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorAnimationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorAnimationDelegate.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorShape.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/NVActivityIndicatorView/NVActivityIndicatorView.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/NVActivityIndicatorView/Presenter/NVActivityIndicatorPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/NVActivityIndicatorView/Presenter/NVActivityIndicatorPresenter.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/NVActivityIndicatorView/Presenter/NVActivityIndicatorViewable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/NVActivityIndicatorView/Presenter/NVActivityIndicatorViewable.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/AttributedString+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/AttributedString+Extension.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/Colors.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/Extensions.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/FontNames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/FontNames.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/Imports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/Imports.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/MarkupString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/MarkupString.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/String+Extension.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/StringScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/StringScanner.swift -------------------------------------------------------------------------------- /DoorDash/Tools/Venders/SwiftRichString/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/DoorDash/Tools/Venders/SwiftRichString/Style.swift -------------------------------------------------------------------------------- /Fonts/TTNorms-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/Fonts/TTNorms-Regular.otf -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mononster/Windowdash/HEAD/README.md --------------------------------------------------------------------------------