├── .gitignore ├── .swiftlint.yml ├── Data ├── DataRepositories │ ├── ProductSourceDetailRepositories.swift │ └── ProductSourceRepositories.swift ├── DataSource │ ├── ProductSource.json │ └── ProductSourceDetail.json └── Models │ ├── ProductSource.swift │ └── ProductSourceDetail.swift ├── Domain ├── Entities │ ├── Address.swift │ ├── CustomProductDetails.swift │ ├── Product.swift │ └── ProductDetail.swift ├── Repositories │ ├── ProductDetailRepositories.swift │ └── ProductRepositories.swift └── UseCases │ ├── ProductDetailUseCase.swift │ └── ProductUseCase.swift ├── EcoMarket.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ └── EcoMarket.xcscheme └── xcuserdata │ └── ahmed-yamany.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── EcoMarket ├── AppDelegate.swift ├── Info.plist ├── SceneDelegate.swift └── Scenes │ ├── Add-Address │ ├── AddAddressViewController.swift │ ├── AddAddressViewController.xib │ └── AddAddressViewModel.swift │ ├── CreditCard │ ├── CardTextField │ │ ├── CardTextField.swift │ │ └── CardTextField.xib │ ├── CreditCardViewController.swift │ ├── CreditCardViewController.xib │ └── CreditCardViewModel.swift │ ├── Onboarding │ ├── .gitkeep │ ├── Auth │ │ ├── Login │ │ │ ├── .gitkeep │ │ │ ├── View │ │ │ │ ├── LoginViewController.swift │ │ │ │ └── LoginViewController.xib │ │ │ └── ViewModel │ │ │ │ └── LoginViewModel.swift │ │ ├── Signup │ │ │ ├── .gitkeep │ │ │ ├── SignupViewController.swift │ │ │ └── SignupViewController.xib │ │ └── SuccessScreen │ │ │ ├── SuccessViewController.swift │ │ │ └── SuccessViewController.xib │ └── Splash │ │ ├── .gitkeep │ │ ├── LaunchScreen │ │ ├── LaunchViewController.swift │ │ └── LaunchViewController.xib │ │ ├── Onboarding │ │ ├── CollectionView Cell │ │ │ ├── OnboardingCollectionViewCell.swift │ │ │ └── OnboardingCollectionViewCell.xib │ │ ├── OnboardingData.json │ │ ├── OnboardingModel.swift │ │ ├── OnboardingViewController.swift │ │ ├── OnboardingViewController.xib │ │ └── OnboardingViewModel.swift │ │ └── Splash │ │ ├── SplashViewController.swift │ │ └── SplashViewController.xib │ ├── Product │ ├── ProductViewModel.swift │ └── ProductsViewController.swift │ ├── ProductDeatils │ ├── ProductDetailViewModel.swift │ ├── ProductDetailsViewController.swift │ └── ProductDetailsViewController.xib │ ├── Settings │ ├── Cell │ │ ├── EditProfileCell │ │ │ ├── EditProfileCollectionViewCell.swift │ │ │ └── EditProfileCollectionViewCell.xib │ │ └── FooterCell │ │ │ ├── FooterCollectionViewCell.swift │ │ │ └── FooterCollectionViewCell.xib │ ├── Sections │ │ ├── EditProfileSection.swift │ │ └── FooterSection.swift │ ├── Settings.json │ ├── SettingsCustomViews │ │ ├── GenderView │ │ │ ├── GenderCustomView.swift │ │ │ └── GenderCustomView.xib │ │ └── TextField │ │ │ ├── SettingsCustomTextField.swift │ │ │ └── SettingsCustomTextField.xib │ ├── SettingsViewController.swift │ └── SettingsViewModel.swift │ ├── Shipping │ ├── Cell │ │ ├── AddressCollectionViewCell.swift │ │ └── AddressCollectionViewCell.xib │ ├── ShippingViewController.swift │ ├── ShippingViewController.xib │ └── ShippingViewModel.swift │ ├── TabBar │ ├── .gitkeep │ ├── Cart │ │ ├── .gitkeep │ │ ├── CartTheme1 │ │ │ ├── Domain │ │ │ │ └── CartUseCase.swift │ │ │ └── Presentation │ │ │ │ ├── CartViewController.swift │ │ │ │ ├── CartViewModel.swift │ │ │ │ └── CollectionView Sections │ │ │ │ ├── CartCheckOutSection │ │ │ │ ├── CartCheckOutSection.swift │ │ │ │ ├── CheckOutCollectionViewCell.swift │ │ │ │ └── CheckOutCollectionViewCell.xib │ │ │ │ └── CartPromoSection │ │ │ │ ├── CartPromoCodeSection.swift │ │ │ │ ├── PromoCodeCollectionViewCell.swift │ │ │ │ └── PromoCodeCollectionViewCell.xib │ │ └── CartTheme2 │ │ │ ├── CartProductSection │ │ │ ├── Cart2ProductsSection.swift │ │ │ ├── CartTheme2CollectionViewCell.swift │ │ │ └── CartTheme2CollectionViewCell.xib │ │ │ └── CartTheme2CollectionViewController.swift │ ├── Home │ │ ├── .gitkeep │ │ ├── Categories │ │ │ ├── .gitkeep │ │ │ ├── CategoriesTheme1 │ │ │ │ ├── .gitkeep │ │ │ │ ├── CategoryViewController1.swift │ │ │ │ ├── CategoryViewModel.swift │ │ │ │ └── cell │ │ │ │ │ ├── CategoryTableViewCell.swift │ │ │ │ │ └── CategoryTableViewCell.xib │ │ │ ├── CategoriesTheme2 │ │ │ │ ├── .gitkeep │ │ │ │ ├── Category2ViewModel.swift │ │ │ │ ├── CategoryViewController2.swift │ │ │ │ ├── CategoryViewController2.xib │ │ │ │ └── cell │ │ │ │ │ ├── CategoryCollectionViewCell.swift │ │ │ │ │ └── CategoryCollectionViewCell.xib │ │ │ └── CategoriesTheme3 │ │ │ │ ├── .gitkeep │ │ │ │ ├── Category3ViewModel.swift │ │ │ │ ├── CategoryViewController3.swift │ │ │ │ ├── CategoryViewController3.xib │ │ │ │ └── Cell │ │ │ │ ├── CategoryCollectionViewCell3.swift │ │ │ │ └── CategoryCollectionViewCell3.xib │ │ ├── Home2 │ │ │ ├── Home2ViewController.swift │ │ │ ├── Home2ViewController.xib │ │ │ ├── Sections │ │ │ │ ├── CategoriesSection │ │ │ │ │ ├── CategoriesCollectionViewCell.swift │ │ │ │ │ ├── CategoriesCollectionViewCell.xib │ │ │ │ │ └── CategoriesSection.swift │ │ │ │ ├── FeaturesSection │ │ │ │ │ ├── FeaturesCollectionViewCell.swift │ │ │ │ │ ├── FeaturesCollectionViewCell.xib │ │ │ │ │ └── FeaturesSection.swift │ │ │ │ └── TopSection │ │ │ │ │ ├── TopProductCollectionViewCell.swift │ │ │ │ │ ├── TopProductCollectionViewCell.xib │ │ │ │ │ └── TopSection.swift │ │ │ └── SupplementaryView │ │ │ │ └── HeaderCollectionReusableView.xib │ │ ├── HomeTheme1 │ │ │ └── .gitkeep │ │ ├── HomeTheme2 │ │ │ ├── .gitkeep │ │ │ ├── Domain │ │ │ │ └── HomeUseCase.swift │ │ │ └── Presentation │ │ │ │ ├── Home2ViewController.swift │ │ │ │ ├── Home2ViewController.xib │ │ │ │ ├── Sections │ │ │ │ ├── CategoriesSection │ │ │ │ │ ├── CategoriesCollectionViewCell.swift │ │ │ │ │ ├── CategoriesCollectionViewCell.xib │ │ │ │ │ └── CategoriesSection.swift │ │ │ │ ├── FeaturesSection │ │ │ │ │ ├── FeaturesCollectionViewCell.swift │ │ │ │ │ ├── FeaturesCollectionViewCell.xib │ │ │ │ │ └── FeaturesSection.swift │ │ │ │ └── TopSection │ │ │ │ │ └── TopSection.swift │ │ │ │ ├── SupplementaryView │ │ │ │ ├── HeaderCollectionReusableView.swift │ │ │ │ └── HeaderCollectionReusableView.xib │ │ │ │ └── ViewModel │ │ │ │ ├── HomeModel.swift │ │ │ │ └── HomeViewModel.swift │ │ ├── HomeTheme3 │ │ │ └── .gitkeep │ │ └── HomeTheme4 │ │ │ └── .gitkeep │ ├── Notifications │ │ ├── .gitkeep │ │ ├── NotificationViewController.swift │ │ ├── Section │ │ │ ├── NotificationCollectionViewCell.swift │ │ │ ├── NotificationCollectionViewCell.xib │ │ │ └── NotificationsSection.swift │ │ └── ViewModel │ │ │ ├── Model │ │ │ └── Notification.swift │ │ │ └── NotificationViewModel.swift │ ├── Profile │ │ ├── .gitkeep │ │ ├── Data │ │ │ ├── Factory │ │ │ │ ├── ProfileItemFactory.swift │ │ │ │ └── ProfileSectionLayoutFactory.swift │ │ │ ├── Profile.json │ │ │ └── ProfileModel.swift │ │ ├── Domain │ │ │ └── ProfileUseCase.swift │ │ └── Presentation │ │ │ ├── Cell │ │ │ ├── ProfileCollectionViewCell.swift │ │ │ ├── ProfileCollectionViewCell.xib │ │ │ ├── UserCollectionViewCell.swift │ │ │ └── UserCollectionViewCell.xib │ │ │ ├── ProfileViewController.swift │ │ │ ├── ProfileViewModel.swift │ │ │ └── Sections │ │ │ ├── DecorationView │ │ │ └── SectionDecorationView.swift │ │ │ ├── ProfileCollectionSection.swift │ │ │ └── UserSection.swift │ └── TabBarController │ │ ├── .gitkeep │ │ ├── EMTabBar.swift │ │ ├── EMTabBarItem.swift │ │ ├── EMTabBarType.swift │ │ ├── EMTabBarViewController.swift │ │ └── EMTabBarViewModel.swift │ ├── Tracking │ ├── CustomView │ │ ├── CustomView.swift │ │ └── CustomView.xib │ ├── TrackingSection │ │ ├── TrackingCollectionViewCell.swift │ │ ├── TrackingCollectionViewCell.xib │ │ └── TrackingSection.swift │ ├── TrackingView.swift │ ├── TrackingViewController.swift │ ├── TrackingViewController.xib │ └── TrackingViewModel │ │ ├── Shipping.json │ │ ├── Tracking.swift │ │ └── TrackingViewModel.swift │ └── WishList │ ├── WishListViewController.swift │ ├── WishListViewController.xib │ └── WishListViewModel.swift ├── EcoMarketTests └── Scenes │ └── Onboarding │ └── Splash │ └── Onboarding │ └── OnboardingTests.swift ├── Packages ├── .gitkeep └── MakeConstraints │ ├── .gitignore │ ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── MakeConstraints │ │ ├── MakeConstraints.swift │ │ └── UIView │ │ ├── UIView+CenterInSuperview.swift │ │ ├── UIView+FillSuperviewConstraints.swift │ │ ├── UIView+MakeConstraints.swift │ │ └── UIView+SizeConstraints.swift │ └── Tests │ └── MakeConstraintsTests │ └── MakeConstraintsTests.swift ├── README.md ├── Resources ├── Assets │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── Alert │ │ │ ├── Contents.json │ │ │ ├── add-to-cart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── error.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── error-2.png │ │ │ │ ├── error-3.png │ │ │ │ └── error.png │ │ │ └── warning.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── warning-2.png │ │ │ │ ├── warning-3.png │ │ │ │ └── warning.png │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Onboarding │ │ │ ├── Contents.json │ │ │ ├── image-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── WhatsApp Image 2024-01-25 at 16.03.27 (1).jpeg │ │ │ ├── image-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── WhatsApp Image 2024-01-25 at 16.03.27 (2).jpeg │ │ │ ├── image-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── WhatsApp Image 2024-01-25 at 16.03.27.jpeg │ │ │ ├── logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Frame.png │ │ │ │ ├── Frame@2x.png │ │ │ │ └── Frame@3x.png │ │ │ ├── next-button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Vector.png │ │ │ │ ├── Vector@2x.png │ │ │ │ └── Vector@3x.png │ │ │ ├── splash-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── image 110.png │ │ │ │ ├── image 110@2x.png │ │ │ │ └── image 110@3x.png │ │ │ └── splash-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── image 109.png │ │ │ │ ├── image 109@2x.png │ │ │ │ └── image 109@3x.png │ │ ├── app-logo.imageset │ │ │ ├── Contents.json │ │ │ ├── ecomarket2@1x.png │ │ │ ├── ecomarket2@2x.png │ │ │ └── ecomarket2@3x.png │ │ ├── auth │ │ │ ├── Contents.json │ │ │ ├── icon-apple.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-facebook.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-google.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-success.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ └── logout.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ ├── category │ │ │ ├── Bags.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-3.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── Clothes.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-2.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── Contents.json │ │ │ ├── Electronics.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-6.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── Jewelry.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-5.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── New Arrivals.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ └── Shoese.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-4.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ ├── category2 │ │ │ ├── Contents.json │ │ │ ├── Dresses.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Dresses.png │ │ │ ├── Features.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Features.png │ │ │ ├── Jackets.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Jackets.png │ │ │ ├── Jeans.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Jeans.png │ │ │ └── Shoese.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shoese.png │ │ ├── category3 │ │ │ ├── Bags.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-10.png │ │ │ ├── Clothes.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-6.png │ │ │ ├── Contents.json │ │ │ ├── Electronics.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-7.png │ │ │ ├── Jewelry.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-8.png │ │ │ ├── New Arrivals.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-5.png │ │ │ └── Shoese.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 90-3.png │ │ ├── creditcard │ │ │ ├── Contents.json │ │ │ ├── ameri.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pngwing.com-3.png │ │ │ ├── credit1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── credit.png │ │ │ ├── credit2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Gousian Layer-2.png │ │ │ ├── credit3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Gousian Layer-3.png │ │ │ ├── credit4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Gousian Layer.png │ │ │ ├── mastercard.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mastercard.png │ │ │ ├── paypal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pngwing.com-2.png │ │ │ └── visa.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pngwing.com.png │ │ ├── hometheme2 │ │ │ ├── Contents.json │ │ │ ├── arrowbutton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow@2x.png │ │ │ │ └── arrow@3x.png │ │ │ ├── filter.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── filtter.png │ │ │ │ ├── filtter@2x.png │ │ │ │ └── filtter@3x.png │ │ │ ├── hmgoepprod-10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-10.jpeg │ │ │ ├── hmgoepprod-11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-11.jpeg │ │ │ ├── hmgoepprod-12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-12.jpeg │ │ │ ├── hmgoepprod-13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-13.jpeg │ │ │ ├── hmgoepprod-14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-14.jpeg │ │ │ ├── hmgoepprod-15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-15.jpeg │ │ │ ├── hmgoepprod-16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-9.jpeg │ │ │ ├── hmgoepprod-17.imageset │ │ │ │ ├── 4000.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-18.imageset │ │ │ │ ├── 5479400705_6_1_1.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-19.imageset │ │ │ │ ├── 02521200500-p.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-2.jpeg │ │ │ ├── hmgoepprod-20.imageset │ │ │ │ ├── 00706186711-p.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-21.imageset │ │ │ │ ├── 00840482427-e1.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-22.imageset │ │ │ │ ├── 8197015406_6_1_1.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-23.imageset │ │ │ │ ├── 3607032407_6_1_1.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-24.imageset │ │ │ │ ├── 08197033405-e1.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-3.jpeg │ │ │ ├── hmgoepprod-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-4.jpeg │ │ │ ├── hmgoepprod-5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-5.jpeg │ │ │ ├── hmgoepprod-6.imageset │ │ │ │ ├── 3832310001_6_1_1.jpg │ │ │ │ └── Contents.json │ │ │ ├── hmgoepprod-7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-7.jpeg │ │ │ ├── hmgoepprod-8.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-8.jpeg │ │ │ ├── hmgoepprod-9.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod-6.jpeg │ │ │ ├── image-10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── d53769c4a9c5a8a95f4e26d12954b8697e894fec.png │ │ │ ├── image-11.imageset │ │ │ │ ├── 0387_3428_027_f.jpg │ │ │ │ └── Contents.json │ │ │ ├── image-12.imageset │ │ │ │ ├── 0116_6298_841_of.jpg │ │ │ │ └── Contents.json │ │ │ ├── image-13.imageset │ │ │ │ ├── 0116_6520_272_of.jpg │ │ │ │ └── Contents.json │ │ │ ├── image-14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hmgoepprod.jpeg │ │ │ ├── image-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-2.png │ │ │ ├── image-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-3.png │ │ │ ├── image-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 90-3.png │ │ │ ├── image-5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 90-2.png │ │ │ ├── image-6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image.png │ │ │ ├── image-7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Untitled-1 1.png │ │ │ ├── image-8.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image-2.png │ │ │ ├── image-9.imageset │ │ │ │ ├── 5c88323cf33dd5e3d775fc1e5cfab2e052cc0339.png │ │ │ │ └── Contents.json │ │ │ ├── image.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image.png │ │ │ ├── menu.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu.png │ │ │ │ ├── menu@2x.png │ │ │ │ └── menu@3x.png │ │ │ ├── user.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Rectangle 97@2x.png │ │ │ │ ├── Rectangle 97@3x.png │ │ │ │ └── Rectangle 98.png │ │ │ ├── zara-1.imageset │ │ │ │ ├── 09878081070-e1.jpg │ │ │ │ └── Contents.json │ │ │ ├── zara-2.imageset │ │ │ │ ├── 03641316527-e1.jpg │ │ │ │ └── Contents.json │ │ │ ├── zara-3.imageset │ │ │ │ ├── 02765709250-e1.jpg │ │ │ │ └── Contents.json │ │ │ └── zara-4.imageset │ │ │ │ ├── 02924087064-e1.jpg │ │ │ │ └── Contents.json │ │ ├── icon │ │ │ ├── Contents.json │ │ │ ├── arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Vector.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── back.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow@2x.png │ │ │ │ └── arrow@3x.png │ │ │ ├── cart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── delete.png │ │ │ │ ├── delete@2x.png │ │ │ │ └── delete@3x.png │ │ │ ├── location.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pin-2.png │ │ │ │ ├── pin-3.png │ │ │ │ └── pin.png │ │ │ ├── love.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── love.png │ │ │ │ ├── love@2x.png │ │ │ │ └── love@3x.png │ │ │ ├── menu.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menu.png │ │ │ │ ├── menu@2x.png │ │ │ │ └── menu@3x.png │ │ │ ├── product-delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Vector.svg │ │ │ │ ├── delete@2x.png │ │ │ │ └── delete@3x.png │ │ │ ├── profile-arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrow.png │ │ │ ├── rating.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Vector-2.png │ │ │ │ ├── Vector@2x.png │ │ │ │ └── Vector@3x.png │ │ │ ├── scan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── screener.png │ │ │ │ ├── screener@2x.png │ │ │ │ └── screener@3x.png │ │ │ ├── scaner.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── screener.png │ │ │ ├── usericon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 105.png │ │ │ ├── usericon2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 106.png │ │ │ └── usericon3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 108.png │ │ ├── product.imageset │ │ │ ├── Contents.json │ │ │ └── image-24 1.png │ │ ├── productDetails │ │ │ ├── Contents.json │ │ │ ├── cart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── favourite.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── love.png │ │ │ │ ├── love@2x.png │ │ │ │ └── love@3x.png │ │ │ └── favouritefill.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── favorite-5.png │ │ ├── profile │ │ │ ├── Contents.json │ │ │ ├── icon-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-2.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-3.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-4.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-5.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-5.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-6.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-6.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-7.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-7.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-8.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-8.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-9.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-9.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ └── profileImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image 106.png │ │ ├── settings │ │ │ ├── Contents.json │ │ │ ├── dots-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dots.png │ │ │ │ ├── dots@2x.png │ │ │ │ └── dots@3x.png │ │ │ ├── dots.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dots.png │ │ │ │ ├── dots@2x.png │ │ │ │ └── dots@3x.png │ │ │ ├── edit.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── edit.png │ │ │ │ ├── edit@2x.png │ │ │ │ └── edit@3x.png │ │ │ ├── icon-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-2.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-3.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ ├── icon-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-4.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ │ └── icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon.png │ │ │ │ ├── icon@2x.png │ │ │ │ └── icon@3x.png │ │ ├── tabbar │ │ │ ├── Contents.json │ │ │ ├── cart-selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Vector.svg │ │ │ ├── cart.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cart.svg │ │ │ ├── home-selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── home.svg │ │ │ ├── home.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Vector.svg │ │ │ ├── notification-selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon.svg │ │ │ ├── notification.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── notification.svg │ │ │ ├── profile-selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon (1).svg │ │ │ └── profile.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── profile.svg │ │ ├── tracking.imageset │ │ │ ├── Contents.json │ │ │ └── Vector.png │ │ └── tracking │ │ │ ├── Contents.json │ │ │ ├── bike.imageset │ │ │ ├── Contents.json │ │ │ └── bike.png │ │ │ ├── car.imageset │ │ │ ├── Contents.json │ │ │ └── car.png │ │ │ └── van.imageset │ │ │ ├── Contents.json │ │ │ └── van.png │ └── Colors.xcassets │ │ ├── Contents.json │ │ ├── em-backgroundColor.colorset │ │ └── Contents.json │ │ ├── em-cardTextFieldBorder.colorset │ │ └── Contents.json │ │ ├── em-cardTextFieldPlaceholder.colorset │ │ └── Contents.json │ │ ├── em-mainTheme.colorset │ │ └── Contents.json │ │ ├── em-primary.colorset │ │ └── Contents.json │ │ ├── em-primaryBackground.colorset │ │ └── Contents.json │ │ ├── em-primaryButton.colorset │ │ └── Contents.json │ │ ├── em-primaryText.colorset │ │ └── Contents.json │ │ ├── em-profileColor.colorset │ │ └── Contents.json │ │ ├── em-searchBackground.colorset │ │ └── Contents.json │ │ ├── em-secondaryBackground.colorset │ │ └── Contents.json │ │ ├── em-secondaryButton.colorset │ │ └── Contents.json │ │ ├── em-secondaryText.colorset │ │ └── Contents.json │ │ ├── em-socialButton.colorset │ │ └── Contents.json │ │ ├── em-stapperBackground.colorset │ │ └── Contents.json │ │ ├── em-textFieldUnderLine.colorset │ │ └── Contents.json │ │ └── selectedColor.colorset │ │ └── Contents.json ├── Fonts │ ├── Fonts.swift │ ├── Poppins-Bold.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-Regular.ttf │ └── Poppins-SemiBold.ttf ├── Generated │ ├── AppColor.swift │ ├── AppImage.swift │ └── Strings+Generated.swift ├── LaunchScreen │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── ar.lproj │ │ └── LaunchScreen.strings └── Localization │ ├── ar.lproj │ └── Localizable.strings │ └── en.lproj │ └── Localizable.strings ├── Utilities ├── Coordnator │ ├── AppCoordinator.swift │ ├── AuthCoordinator.swift │ ├── CartCoordinator.swift │ ├── Coordinator.swift │ ├── CreditCardCoordinator.swift │ ├── DetailsCoordinator.swift │ ├── HomeCoordinator.swift │ ├── OnboardingCoordinator.swift │ ├── ProfileCoordinator.swift │ ├── ShippingCoordinator.swift │ └── TabBarCoordinator.swift ├── Custom Views │ ├── .gitkeep │ ├── Alert │ │ ├── AlertItem.swift │ │ ├── AlertStatus.swift │ │ ├── AlertViewController.swift │ │ └── AlertViewController.xib │ ├── Buttons │ │ ├── AppleButton.swift │ │ ├── EcoMarketButton.swift │ │ ├── FacebookButton.swift │ │ ├── GoogleButton.swift │ │ ├── PrimaryButton.swift │ │ └── SocialMediaButton.swift │ ├── CardView │ │ ├── CardView.swift │ │ └── CardView.xib │ ├── Color View │ │ ├── ColorCollectionView.swift │ │ ├── ColorCollectionViewCell.swift │ │ └── CustomColorView.swift │ ├── Custom Cart │ │ ├── CustomCartView.swift │ │ └── CustomCartView.xib │ ├── HeaderView │ │ └── Header.swift │ ├── PageControl │ │ └── FlexiblePageControl.swift │ ├── Product Review View │ │ ├── ProductReviewView.swift │ │ └── ProductReviewView.xib │ ├── Reusable Views │ │ ├── CollectionSectionHeader.swift │ │ ├── CustomProductCell │ │ │ ├── ProductCollectionViewCell.swift │ │ │ └── ProductCollectionViewCell.xib │ │ └── CustomProductDetailsSection │ │ │ ├── CustomProductDetailsCollectionViewCell.swift │ │ │ ├── CustomProductDetailsCollectionViewCell.xib │ │ │ └── CustomProductDetailsSection.swift │ ├── SearchView │ │ ├── SearchView.swift │ │ └── SearchView.xib │ ├── Size View │ │ ├── SizeCollectionView.swift │ │ ├── SizeCollectionViewCell.swift │ │ └── SizeView.swift │ ├── Stapper View │ │ ├── StapperView.swift │ │ └── StapperView.xib │ └── TextField │ │ └── EmTextField │ │ ├── EMTextField.swift │ │ └── EMTextField.xib ├── Extensions │ ├── .gitkeep │ ├── Collection+.swift │ ├── Foundation │ │ └── +JSONDecoder.swift │ ├── SectionsLayoutProtocol │ │ └── SectionsLayout.swift │ ├── String │ │ └── String+.swift │ ├── UIApplicatoin │ │ └── mainWindow.swift │ ├── UICollectionView │ │ └── UICollectionVeiw+Extension.swift │ ├── UIColor │ │ └── +hexString.swift │ ├── UIImageView │ │ └── +makeRounded.swift │ ├── UITableView │ │ └── UITableView+Extension.swift │ ├── UITextField │ │ └── UITextField+Extension.swift │ ├── UIView │ │ ├── drawOnboardingShape.swift │ │ ├── maskCustomProductShape.swift │ │ └── parentViewController.swift │ └── UIViewController │ │ └── +topMostViewController.swift ├── Logger │ └── Logger.swift ├── LottieAnimations-JSON │ └── EcoMarket.json ├── Router │ ├── AppRouter.swift │ └── Router.swift └── TypeAliases.swift └── swiftgen.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Data/DataRepositories/ProductSourceDetailRepositories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Data/DataRepositories/ProductSourceDetailRepositories.swift -------------------------------------------------------------------------------- /Data/DataRepositories/ProductSourceRepositories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Data/DataRepositories/ProductSourceRepositories.swift -------------------------------------------------------------------------------- /Data/DataSource/ProductSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Data/DataSource/ProductSource.json -------------------------------------------------------------------------------- /Data/DataSource/ProductSourceDetail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Data/DataSource/ProductSourceDetail.json -------------------------------------------------------------------------------- /Data/Models/ProductSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Data/Models/ProductSource.swift -------------------------------------------------------------------------------- /Data/Models/ProductSourceDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Data/Models/ProductSourceDetail.swift -------------------------------------------------------------------------------- /Domain/Entities/Address.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Domain/Entities/Address.swift -------------------------------------------------------------------------------- /Domain/Entities/CustomProductDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Domain/Entities/CustomProductDetails.swift -------------------------------------------------------------------------------- /Domain/Entities/Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Domain/Entities/Product.swift -------------------------------------------------------------------------------- /Domain/Entities/ProductDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Domain/Entities/ProductDetail.swift -------------------------------------------------------------------------------- /Domain/Repositories/ProductDetailRepositories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Domain/Repositories/ProductDetailRepositories.swift -------------------------------------------------------------------------------- /Domain/Repositories/ProductRepositories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Domain/Repositories/ProductRepositories.swift -------------------------------------------------------------------------------- /Domain/UseCases/ProductDetailUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Domain/UseCases/ProductDetailUseCase.swift -------------------------------------------------------------------------------- /Domain/UseCases/ProductUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Domain/UseCases/ProductUseCase.swift -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/xcshareddata/xcschemes/EcoMarket.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket.xcodeproj/xcshareddata/xcschemes/EcoMarket.xcscheme -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/xcuserdata/ahmed-yamany.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket.xcodeproj/xcuserdata/ahmed-yamany.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /EcoMarket/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/AppDelegate.swift -------------------------------------------------------------------------------- /EcoMarket/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Info.plist -------------------------------------------------------------------------------- /EcoMarket/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/SceneDelegate.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Add-Address/AddAddressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Add-Address/AddAddressViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Add-Address/AddAddressViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Add-Address/AddAddressViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Add-Address/AddAddressViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Add-Address/AddAddressViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/CreditCard/CardTextField/CardTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/CreditCard/CardTextField/CardTextField.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/CreditCard/CardTextField/CardTextField.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/CreditCard/CardTextField/CardTextField.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/CreditCard/CreditCardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/CreditCard/CreditCardViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/CreditCard/CreditCardViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/CreditCard/CreditCardViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/CreditCard/CreditCardViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/CreditCard/CreditCardViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/Login/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/Login/View/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Auth/Login/View/LoginViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/Login/View/LoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Auth/Login/View/LoginViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/Login/ViewModel/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Auth/Login/ViewModel/LoginViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/Signup/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/Signup/SignupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Auth/Signup/SignupViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/Signup/SignupViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Auth/Signup/SignupViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/SuccessScreen/SuccessViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Auth/SuccessScreen/SuccessViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Auth/SuccessScreen/SuccessViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Auth/SuccessScreen/SuccessViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/LaunchScreen/LaunchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/LaunchScreen/LaunchViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/LaunchScreen/LaunchViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/LaunchScreen/LaunchViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/CollectionView Cell/OnboardingCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/CollectionView Cell/OnboardingCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/CollectionView Cell/OnboardingCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/CollectionView Cell/OnboardingCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingData.json -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Splash/SplashViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Splash/SplashViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Splash/SplashViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Splash/SplashViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Product/ProductViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Product/ProductViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Product/ProductsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Product/ProductsViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/ProductDeatils/ProductDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/ProductDeatils/ProductDetailViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/ProductDeatils/ProductDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/ProductDeatils/ProductDetailsViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/ProductDeatils/ProductDetailsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/ProductDeatils/ProductDetailsViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/Cell/EditProfileCell/EditProfileCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/Cell/EditProfileCell/EditProfileCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/Cell/EditProfileCell/EditProfileCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/Cell/EditProfileCell/EditProfileCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/Cell/FooterCell/FooterCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/Cell/FooterCell/FooterCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/Cell/FooterCell/FooterCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/Cell/FooterCell/FooterCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/Sections/EditProfileSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/Sections/EditProfileSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/Sections/FooterSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/Sections/FooterSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/Settings.json -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/SettingsCustomViews/GenderView/GenderCustomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/SettingsCustomViews/GenderView/GenderCustomView.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/SettingsCustomViews/GenderView/GenderCustomView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/SettingsCustomViews/GenderView/GenderCustomView.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/SettingsCustomViews/TextField/SettingsCustomTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/SettingsCustomViews/TextField/SettingsCustomTextField.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/SettingsCustomViews/TextField/SettingsCustomTextField.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/SettingsCustomViews/TextField/SettingsCustomTextField.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Settings/SettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Settings/SettingsViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Shipping/Cell/AddressCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Shipping/Cell/AddressCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Shipping/Cell/AddressCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Shipping/Cell/AddressCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Shipping/ShippingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Shipping/ShippingViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Shipping/ShippingViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Shipping/ShippingViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Shipping/ShippingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Shipping/ShippingViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Domain/CartUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Domain/CartUseCase.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CartViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CartViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CartViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CartViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartCheckOutSection/CartCheckOutSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartCheckOutSection/CartCheckOutSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartCheckOutSection/CheckOutCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartCheckOutSection/CheckOutCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartCheckOutSection/CheckOutCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartCheckOutSection/CheckOutCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartPromoSection/CartPromoCodeSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartPromoSection/CartPromoCodeSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartPromoSection/PromoCodeCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartPromoSection/PromoCodeCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartPromoSection/PromoCodeCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme1/Presentation/CollectionView Sections/CartPromoSection/PromoCodeCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme2/CartProductSection/Cart2ProductsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme2/CartProductSection/Cart2ProductsSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme2/CartProductSection/CartTheme2CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme2/CartProductSection/CartTheme2CollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme2/CartProductSection/CartTheme2CollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme2/CartProductSection/CartTheme2CollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/CartTheme2/CartTheme2CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Cart/CartTheme2/CartTheme2CollectionViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/CategoryViewController1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/CategoryViewController1.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/CategoryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/CategoryViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/cell/CategoryTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/cell/CategoryTableViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/cell/CategoryTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme1/cell/CategoryTableViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/Category2ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/Category2ViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/CategoryViewController2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/CategoryViewController2.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/CategoryViewController2.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/CategoryViewController2.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/cell/CategoryCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/cell/CategoryCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/cell/CategoryCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme2/cell/CategoryCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/Category3ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/Category3ViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/CategoryViewController3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/CategoryViewController3.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/CategoryViewController3.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/CategoryViewController3.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/Cell/CategoryCollectionViewCell3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/Cell/CategoryCollectionViewCell3.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/Cell/CategoryCollectionViewCell3.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/Cell/CategoryCollectionViewCell3.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Home2ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Home2ViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Home2ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Home2ViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/CategoriesSection/CategoriesCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/CategoriesSection/CategoriesCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/CategoriesSection/CategoriesCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/CategoriesSection/CategoriesCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/CategoriesSection/CategoriesSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/CategoriesSection/CategoriesSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/FeaturesSection/FeaturesCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/FeaturesSection/FeaturesCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/FeaturesSection/FeaturesCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/FeaturesSection/FeaturesCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/FeaturesSection/FeaturesSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/FeaturesSection/FeaturesSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/TopSection/TopProductCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/TopSection/TopProductCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/TopSection/TopProductCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/TopSection/TopProductCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/Sections/TopSection/TopSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/Sections/TopSection/TopSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Home2/SupplementaryView/HeaderCollectionReusableView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/Home2/SupplementaryView/HeaderCollectionReusableView.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Domain/HomeUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Domain/HomeUseCase.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Home2ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Home2ViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Home2ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Home2ViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/CategoriesSection/CategoriesCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/CategoriesSection/CategoriesCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/CategoriesSection/CategoriesCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/CategoriesSection/CategoriesCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/CategoriesSection/CategoriesSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/CategoriesSection/CategoriesSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/FeaturesSection/FeaturesCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/FeaturesSection/FeaturesCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/FeaturesSection/FeaturesCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/FeaturesSection/FeaturesCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/FeaturesSection/FeaturesSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/FeaturesSection/FeaturesSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/TopSection/TopSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/Sections/TopSection/TopSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/SupplementaryView/HeaderCollectionReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/SupplementaryView/HeaderCollectionReusableView.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/SupplementaryView/HeaderCollectionReusableView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/SupplementaryView/HeaderCollectionReusableView.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/ViewModel/HomeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/ViewModel/HomeModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/ViewModel/HomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Home/HomeTheme2/Presentation/ViewModel/HomeViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme3/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme4/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Notifications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Notifications/NotificationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Notifications/NotificationViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Notifications/Section/NotificationCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Notifications/Section/NotificationCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Notifications/Section/NotificationCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Notifications/Section/NotificationCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Notifications/Section/NotificationsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Notifications/Section/NotificationsSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Notifications/ViewModel/Model/Notification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Notifications/ViewModel/Model/Notification.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Notifications/ViewModel/NotificationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Notifications/ViewModel/NotificationViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Data/Factory/ProfileItemFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Data/Factory/ProfileItemFactory.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Data/Factory/ProfileSectionLayoutFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Data/Factory/ProfileSectionLayoutFactory.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Data/Profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Data/Profile.json -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Data/ProfileModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Data/ProfileModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Domain/ProfileUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Domain/ProfileUseCase.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/Cell/ProfileCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/Cell/ProfileCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/Cell/ProfileCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/Cell/ProfileCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/Cell/UserCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/Cell/UserCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/Cell/UserCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/Cell/UserCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/ProfileViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/ProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/ProfileViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/Sections/DecorationView/SectionDecorationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/Sections/DecorationView/SectionDecorationView.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/Sections/ProfileCollectionSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/Sections/ProfileCollectionSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/Presentation/Sections/UserSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/Profile/Presentation/Sections/UserSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/TabBarController/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/TabBarController/EMTabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/TabBarController/EMTabBar.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/TabBarController/EMTabBarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/TabBarController/EMTabBarItem.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/TabBarController/EMTabBarType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/TabBarController/EMTabBarType.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/TabBarController/EMTabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/TabBarController/EMTabBarViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/TabBarController/EMTabBarViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/TabBar/TabBarController/EMTabBarViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/CustomView/CustomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/CustomView/CustomView.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/CustomView/CustomView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/CustomView/CustomView.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingSection/TrackingCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingSection/TrackingCollectionViewCell.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingSection/TrackingCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingSection/TrackingCollectionViewCell.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingSection/TrackingSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingSection/TrackingSection.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingView.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingViewModel/Shipping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingViewModel/Shipping.json -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingViewModel/Tracking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingViewModel/Tracking.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Tracking/TrackingViewModel/TrackingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/Tracking/TrackingViewModel/TrackingViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/WishList/WishListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/WishList/WishListViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/WishList/WishListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/WishList/WishListViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/WishList/WishListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarket/Scenes/WishList/WishListViewModel.swift -------------------------------------------------------------------------------- /EcoMarketTests/Scenes/Onboarding/Splash/Onboarding/OnboardingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/EcoMarketTests/Scenes/Onboarding/Splash/Onboarding/OnboardingTests.swift -------------------------------------------------------------------------------- /Packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/MakeConstraints/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/.gitignore -------------------------------------------------------------------------------- /Packages/MakeConstraints/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Packages/MakeConstraints/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/Package.swift -------------------------------------------------------------------------------- /Packages/MakeConstraints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/README.md -------------------------------------------------------------------------------- /Packages/MakeConstraints/Sources/MakeConstraints/MakeConstraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/Sources/MakeConstraints/MakeConstraints.swift -------------------------------------------------------------------------------- /Packages/MakeConstraints/Sources/MakeConstraints/UIView/UIView+CenterInSuperview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/Sources/MakeConstraints/UIView/UIView+CenterInSuperview.swift -------------------------------------------------------------------------------- /Packages/MakeConstraints/Sources/MakeConstraints/UIView/UIView+FillSuperviewConstraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/Sources/MakeConstraints/UIView/UIView+FillSuperviewConstraints.swift -------------------------------------------------------------------------------- /Packages/MakeConstraints/Sources/MakeConstraints/UIView/UIView+MakeConstraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/Sources/MakeConstraints/UIView/UIView+MakeConstraints.swift -------------------------------------------------------------------------------- /Packages/MakeConstraints/Sources/MakeConstraints/UIView/UIView+SizeConstraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/Sources/MakeConstraints/UIView/UIView+SizeConstraints.swift -------------------------------------------------------------------------------- /Packages/MakeConstraints/Tests/MakeConstraintsTests/MakeConstraintsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Packages/MakeConstraints/Tests/MakeConstraintsTests/MakeConstraintsTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/add-to-cart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/add-to-cart.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/add-to-cart.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/add-to-cart.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/add-to-cart.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/add-to-cart.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/add-to-cart.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/add-to-cart.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/error.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/error.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/error.imageset/error-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/error.imageset/error-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/error.imageset/error-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/error.imageset/error-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/error.imageset/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/error.imageset/error.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/warning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/warning.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/warning.imageset/warning-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/warning.imageset/warning-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/warning.imageset/warning-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/warning.imageset/warning-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Alert/warning.imageset/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Alert/warning.imageset/warning.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/image-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/image-1.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/image-1.imageset/WhatsApp Image 2024-01-25 at 16.03.27 (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/image-1.imageset/WhatsApp Image 2024-01-25 at 16.03.27 (1).jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/image-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/image-2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/image-2.imageset/WhatsApp Image 2024-01-25 at 16.03.27 (2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/image-2.imageset/WhatsApp Image 2024-01-25 at 16.03.27 (2).jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/image-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/image-3.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/image-3.imageset/WhatsApp Image 2024-01-25 at 16.03.27.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/image-3.imageset/WhatsApp Image 2024-01-25 at 16.03.27.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/logo.imageset/Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/logo.imageset/Frame.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/logo.imageset/Frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/logo.imageset/Frame@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/logo.imageset/Frame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/logo.imageset/Frame@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/next-button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/next-button.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/next-button.imageset/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/next-button.imageset/Vector.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/next-button.imageset/Vector@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/next-button.imageset/Vector@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/next-button.imageset/Vector@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/next-button.imageset/Vector@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash-1.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash-1.imageset/image 110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash-1.imageset/image 110.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash-1.imageset/image 110@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash-1.imageset/image 110@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash-1.imageset/image 110@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash-1.imageset/image 110@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash-2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash-2.imageset/image 109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash-2.imageset/image 109.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash-2.imageset/image 109@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash-2.imageset/image 109@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash-2.imageset/image 109@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash-2.imageset/image 109@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/app-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/app-logo.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/app-logo.imageset/ecomarket2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/app-logo.imageset/ecomarket2@1x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/app-logo.imageset/ecomarket2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/app-logo.imageset/ecomarket2@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/app-logo.imageset/ecomarket2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/app-logo.imageset/ecomarket2@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-apple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-apple.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-apple.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-apple.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-apple.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-apple.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-apple.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-apple.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-facebook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-facebook.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-facebook.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-facebook.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-facebook.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-facebook.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-facebook.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-facebook.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-google.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-google.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-google.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-google.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-google.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-google.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-google.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-google.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-success.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-success.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-success.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-success.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-success.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-success.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/icon-success.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/icon-success.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/logout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/logout.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/logout.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/logout.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/logout.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/logout.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/auth/logout.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/auth/logout.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Bags.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Bags.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Bags.imageset/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Bags.imageset/icon-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Bags.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Bags.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Bags.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Bags.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Clothes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Clothes.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Clothes.imageset/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Clothes.imageset/icon-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Clothes.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Clothes.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Clothes.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Clothes.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Electronics.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Electronics.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Electronics.imageset/icon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Electronics.imageset/icon-6.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Electronics.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Electronics.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Electronics.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Electronics.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Jewelry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Jewelry.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Jewelry.imageset/icon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Jewelry.imageset/icon-5.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Jewelry.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Jewelry.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Jewelry.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Jewelry.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/New Arrivals.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/New Arrivals.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/New Arrivals.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/New Arrivals.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/New Arrivals.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/New Arrivals.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/New Arrivals.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/New Arrivals.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Shoese.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Shoese.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Shoese.imageset/icon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Shoese.imageset/icon-4.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Shoese.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Shoese.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category/Shoese.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category/Shoese.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Dresses.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Dresses.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Dresses.imageset/Dresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Dresses.imageset/Dresses.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Features.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Features.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Features.imageset/Features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Features.imageset/Features.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Jackets.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Jackets.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Jackets.imageset/Jackets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Jackets.imageset/Jackets.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Jeans.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Jeans.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Jeans.imageset/Jeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Jeans.imageset/Jeans.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Shoese.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Shoese.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category2/Shoese.imageset/Shoese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category2/Shoese.imageset/Shoese.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Bags.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Bags.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Bags.imageset/image-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Bags.imageset/image-10.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Clothes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Clothes.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Clothes.imageset/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Clothes.imageset/image-6.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Electronics.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Electronics.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Electronics.imageset/image-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Electronics.imageset/image-7.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Jewelry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Jewelry.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Jewelry.imageset/image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Jewelry.imageset/image-8.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/New Arrivals.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/New Arrivals.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/New Arrivals.imageset/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/New Arrivals.imageset/image-5.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Shoese.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Shoese.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/category3/Shoese.imageset/image 90-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/category3/Shoese.imageset/image 90-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/ameri.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/ameri.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/ameri.imageset/pngwing.com-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/ameri.imageset/pngwing.com-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/credit1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/credit1.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/credit1.imageset/credit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/credit1.imageset/credit.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/credit2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/credit2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/credit2.imageset/Gousian Layer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/credit2.imageset/Gousian Layer-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/credit3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/credit3.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/credit3.imageset/Gousian Layer-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/credit3.imageset/Gousian Layer-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/credit4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/credit4.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/credit4.imageset/Gousian Layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/credit4.imageset/Gousian Layer.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/mastercard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/mastercard.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/mastercard.imageset/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/mastercard.imageset/mastercard.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/paypal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/paypal.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/paypal.imageset/pngwing.com-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/paypal.imageset/pngwing.com-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/visa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/visa.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/creditcard/visa.imageset/pngwing.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/creditcard/visa.imageset/pngwing.com.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/arrowbutton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/arrowbutton.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/arrowbutton.imageset/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/arrowbutton.imageset/arrow.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/arrowbutton.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/arrowbutton.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/arrowbutton.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/arrowbutton.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/filter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/filter.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/filter.imageset/filtter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/filter.imageset/filtter.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/filter.imageset/filtter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/filter.imageset/filtter@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/filter.imageset/filtter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/filter.imageset/filtter@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-10.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-10.imageset/hmgoepprod-10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-10.imageset/hmgoepprod-10.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-11.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-11.imageset/hmgoepprod-11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-11.imageset/hmgoepprod-11.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-12.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-12.imageset/hmgoepprod-12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-12.imageset/hmgoepprod-12.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-13.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-13.imageset/hmgoepprod-13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-13.imageset/hmgoepprod-13.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-14.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-14.imageset/hmgoepprod-14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-14.imageset/hmgoepprod-14.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-15.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-15.imageset/hmgoepprod-15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-15.imageset/hmgoepprod-15.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-16.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-16.imageset/hmgoepprod-9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-16.imageset/hmgoepprod-9.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-17.imageset/4000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-17.imageset/4000.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-17.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-18.imageset/5479400705_6_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-18.imageset/5479400705_6_1_1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-18.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-19.imageset/02521200500-p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-19.imageset/02521200500-p.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-19.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-2.imageset/hmgoepprod-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-2.imageset/hmgoepprod-2.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-20.imageset/00706186711-p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-20.imageset/00706186711-p.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-20.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-21.imageset/00840482427-e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-21.imageset/00840482427-e1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-21.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-22.imageset/8197015406_6_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-22.imageset/8197015406_6_1_1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-22.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-23.imageset/3607032407_6_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-23.imageset/3607032407_6_1_1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-23.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-23.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-24.imageset/08197033405-e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-24.imageset/08197033405-e1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-24.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-3.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-3.imageset/hmgoepprod-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-3.imageset/hmgoepprod-3.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-4.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-4.imageset/hmgoepprod-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-4.imageset/hmgoepprod-4.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-5.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-5.imageset/hmgoepprod-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-5.imageset/hmgoepprod-5.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-6.imageset/3832310001_6_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-6.imageset/3832310001_6_1_1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-6.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-7.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-7.imageset/hmgoepprod-7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-7.imageset/hmgoepprod-7.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-8.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-8.imageset/hmgoepprod-8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-8.imageset/hmgoepprod-8.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-9.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-9.imageset/hmgoepprod-6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/hmgoepprod-9.imageset/hmgoepprod-6.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-10.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-10.imageset/d53769c4a9c5a8a95f4e26d12954b8697e894fec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-10.imageset/d53769c4a9c5a8a95f4e26d12954b8697e894fec.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-11.imageset/0387_3428_027_f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-11.imageset/0387_3428_027_f.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-11.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-12.imageset/0116_6298_841_of.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-12.imageset/0116_6298_841_of.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-12.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-13.imageset/0116_6520_272_of.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-13.imageset/0116_6520_272_of.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-13.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-14.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-14.imageset/hmgoepprod.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-14.imageset/hmgoepprod.jpeg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-2.imageset/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-2.imageset/image-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-3.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-3.imageset/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-3.imageset/image-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-4.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-4.imageset/image 90-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-4.imageset/image 90-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-5.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-5.imageset/image 90-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-5.imageset/image 90-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-6.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-6.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-6.imageset/image.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-7.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-7.imageset/Untitled-1 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-7.imageset/Untitled-1 1.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-8.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-8.imageset/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-8.imageset/image-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-9.imageset/5c88323cf33dd5e3d775fc1e5cfab2e052cc0339.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-9.imageset/5c88323cf33dd5e3d775fc1e5cfab2e052cc0339.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image-9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image-9.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/image.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/image.imageset/image.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/menu.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/menu.imageset/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/menu.imageset/menu.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/menu.imageset/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/menu.imageset/menu@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/menu.imageset/menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/menu.imageset/menu@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/user.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/user.imageset/Rectangle 97@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/user.imageset/Rectangle 97@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/user.imageset/Rectangle 97@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/user.imageset/Rectangle 97@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/user.imageset/Rectangle 98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/user.imageset/Rectangle 98.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/zara-1.imageset/09878081070-e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/zara-1.imageset/09878081070-e1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/zara-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/zara-1.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/zara-2.imageset/03641316527-e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/zara-2.imageset/03641316527-e1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/zara-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/zara-2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/zara-3.imageset/02765709250-e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/zara-3.imageset/02765709250-e1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/zara-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/zara-3.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/zara-4.imageset/02924087064-e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/zara-4.imageset/02924087064-e1.jpg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/hometheme2/zara-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/hometheme2/zara-4.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/arrow.imageset/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/arrow.imageset/Vector.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/arrow.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/arrow.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/arrow.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/arrow.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/back.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/back.imageset/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/back.imageset/arrow.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/back.imageset/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/back.imageset/arrow@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/back.imageset/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/back.imageset/arrow@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/cart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/cart.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/cart.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/cart.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/cart.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/cart.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/cart.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/cart.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/delete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/delete.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/delete.imageset/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/delete.imageset/delete.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/delete.imageset/delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/delete.imageset/delete@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/delete.imageset/delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/delete.imageset/delete@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/location.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/location.imageset/pin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/location.imageset/pin-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/location.imageset/pin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/location.imageset/pin-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/location.imageset/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/location.imageset/pin.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/love.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/love.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/love.imageset/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/love.imageset/love.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/love.imageset/love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/love.imageset/love@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/love.imageset/love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/love.imageset/love@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/menu.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/menu.imageset/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/menu.imageset/menu.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/menu.imageset/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/menu.imageset/menu@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/menu.imageset/menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/menu.imageset/menu@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/product-delete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/product-delete.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/product-delete.imageset/Vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/product-delete.imageset/Vector.svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/product-delete.imageset/delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/product-delete.imageset/delete@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/product-delete.imageset/delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/product-delete.imageset/delete@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/profile-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/profile-arrow.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/profile-arrow.imageset/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/profile-arrow.imageset/arrow.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/rating.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/rating.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/rating.imageset/Vector-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/rating.imageset/Vector-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/rating.imageset/Vector@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/rating.imageset/Vector@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/rating.imageset/Vector@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/rating.imageset/Vector@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/scan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/scan.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/scan.imageset/screener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/scan.imageset/screener.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/scan.imageset/screener@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/scan.imageset/screener@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/scan.imageset/screener@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/scan.imageset/screener@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/scaner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/scaner.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/scaner.imageset/screener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/scaner.imageset/screener.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/usericon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/usericon.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/usericon.imageset/image 105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/usericon.imageset/image 105.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/usericon2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/usericon2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/usericon2.imageset/image 106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/usericon2.imageset/image 106.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/usericon3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/usericon3.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/icon/usericon3.imageset/image 108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/icon/usericon3.imageset/image 108.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/product.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/product.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/product.imageset/image-24 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/product.imageset/image-24 1.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/cart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/cart.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/cart.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/cart.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/cart.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/cart.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/cart.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/cart.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/favourite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/favourite.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/favourite.imageset/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/favourite.imageset/love.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/favourite.imageset/love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/favourite.imageset/love@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/favourite.imageset/love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/favourite.imageset/love@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/favouritefill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/favouritefill.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/productDetails/favouritefill.imageset/favorite-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/productDetails/favouritefill.imageset/favorite-5.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-2.imageset/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-2.imageset/icon-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-2.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-2.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-2.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-2.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-3.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-3.imageset/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-3.imageset/icon-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-3.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-3.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-3.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-3.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-4.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-4.imageset/icon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-4.imageset/icon-4.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-4.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-4.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-4.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-4.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-5.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-5.imageset/icon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-5.imageset/icon-5.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-5.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-5.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-5.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-5.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-6.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-6.imageset/icon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-6.imageset/icon-6.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-6.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-6.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-6.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-6.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-7.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-7.imageset/icon-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-7.imageset/icon-7.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-7.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-7.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-7.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-7.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-8.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-8.imageset/icon-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-8.imageset/icon-8.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-8.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-8.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-8.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-8.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-9.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-9.imageset/icon-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-9.imageset/icon-9.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-9.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-9.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon-9.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon-9.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/icon.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/icon.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/profileImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/profileImage.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/profile/profileImage.imageset/image 106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/profile/profileImage.imageset/image 106.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/dots-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/dots-2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/dots-2.imageset/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/dots-2.imageset/dots.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/dots-2.imageset/dots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/dots-2.imageset/dots@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/dots-2.imageset/dots@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/dots-2.imageset/dots@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/dots.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/dots.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/dots.imageset/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/dots.imageset/dots.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/dots.imageset/dots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/dots.imageset/dots@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/dots.imageset/dots@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/dots.imageset/dots@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/edit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/edit.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/edit.imageset/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/edit.imageset/edit.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/edit.imageset/edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/edit.imageset/edit@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/edit.imageset/edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/edit.imageset/edit@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-2.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-2.imageset/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-2.imageset/icon-2.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-2.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-2.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-2.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-2.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-3.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-3.imageset/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-3.imageset/icon-3.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-3.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-3.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-3.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-3.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-4.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-4.imageset/icon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-4.imageset/icon-4.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-4.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-4.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon-4.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon-4.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon.imageset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon.imageset/icon.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon.imageset/icon@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/settings/icon.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/settings/icon.imageset/icon@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/cart-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/cart-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/cart-selected.imageset/Vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/cart-selected.imageset/Vector.svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/cart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/cart.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/cart.imageset/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/cart.imageset/cart.svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/home-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/home-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/home-selected.imageset/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/home-selected.imageset/home.svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/home.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/home.imageset/Vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/home.imageset/Vector.svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/notification-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/notification-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/notification-selected.imageset/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/notification-selected.imageset/icon.svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/notification.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/notification.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/notification.imageset/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/notification.imageset/notification.svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/profile-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/profile-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/profile-selected.imageset/icon (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/profile-selected.imageset/icon (1).svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/profile.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tabbar/profile.imageset/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tabbar/profile.imageset/profile.svg -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking.imageset/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking.imageset/Vector.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking/bike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking/bike.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking/bike.imageset/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking/bike.imageset/bike.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking/car.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking/car.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking/car.imageset/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking/car.imageset/car.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking/van.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking/van.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/tracking/van.imageset/van.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/tracking/van.imageset/van.png -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-backgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-backgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-cardTextFieldBorder.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-cardTextFieldBorder.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-cardTextFieldPlaceholder.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-cardTextFieldPlaceholder.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-mainTheme.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-mainTheme.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-primary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-primary.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-primaryBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-primaryBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-primaryButton.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-primaryButton.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-primaryText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-primaryText.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-profileColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-profileColor.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-searchBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-searchBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-secondaryBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-secondaryBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-secondaryButton.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-secondaryButton.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-secondaryText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-secondaryText.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-socialButton.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-socialButton.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-stapperBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-stapperBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/em-textFieldUnderLine.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/em-textFieldUnderLine.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Colors.xcassets/selectedColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Assets/Colors.xcassets/selectedColor.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Fonts/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Fonts/Fonts.swift -------------------------------------------------------------------------------- /Resources/Fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /Resources/Generated/AppColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Generated/AppColor.swift -------------------------------------------------------------------------------- /Resources/Generated/AppImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Generated/AppImage.swift -------------------------------------------------------------------------------- /Resources/Generated/Strings+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Generated/Strings+Generated.swift -------------------------------------------------------------------------------- /Resources/LaunchScreen/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/LaunchScreen/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Resources/LaunchScreen/ar.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/Localization/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Localization/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/Localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Resources/Localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Utilities/Coordnator/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/AppCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/AuthCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/AuthCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/CartCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/CartCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/Coordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/CreditCardCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/CreditCardCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/DetailsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/DetailsCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/HomeCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/HomeCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/OnboardingCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/OnboardingCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/ProfileCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/ProfileCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/ShippingCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/ShippingCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Coordnator/TabBarCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Coordnator/TabBarCoordinator.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utilities/Custom Views/Alert/AlertItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Alert/AlertItem.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Alert/AlertStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Alert/AlertStatus.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Alert/AlertViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Alert/AlertViewController.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Alert/AlertViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Alert/AlertViewController.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/Buttons/AppleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Buttons/AppleButton.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Buttons/EcoMarketButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Buttons/EcoMarketButton.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Buttons/FacebookButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Buttons/FacebookButton.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Buttons/GoogleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Buttons/GoogleButton.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Buttons/PrimaryButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Buttons/PrimaryButton.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Buttons/SocialMediaButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Buttons/SocialMediaButton.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/CardView/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/CardView/CardView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/CardView/CardView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/CardView/CardView.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/Color View/ColorCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Color View/ColorCollectionView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Color View/ColorCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Color View/ColorCollectionViewCell.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Color View/CustomColorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Color View/CustomColorView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Custom Cart/CustomCartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Custom Cart/CustomCartView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Custom Cart/CustomCartView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Custom Cart/CustomCartView.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/HeaderView/Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/HeaderView/Header.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/PageControl/FlexiblePageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/PageControl/FlexiblePageControl.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Product Review View/ProductReviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Product Review View/ProductReviewView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Product Review View/ProductReviewView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Product Review View/ProductReviewView.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/Reusable Views/CollectionSectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Reusable Views/CollectionSectionHeader.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Reusable Views/CustomProductCell/ProductCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Reusable Views/CustomProductCell/ProductCollectionViewCell.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Reusable Views/CustomProductCell/ProductCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Reusable Views/CustomProductCell/ProductCollectionViewCell.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/Reusable Views/CustomProductDetailsSection/CustomProductDetailsCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Reusable Views/CustomProductDetailsSection/CustomProductDetailsCollectionViewCell.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Reusable Views/CustomProductDetailsSection/CustomProductDetailsCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Reusable Views/CustomProductDetailsSection/CustomProductDetailsCollectionViewCell.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/Reusable Views/CustomProductDetailsSection/CustomProductDetailsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Reusable Views/CustomProductDetailsSection/CustomProductDetailsSection.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/SearchView/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/SearchView/SearchView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/SearchView/SearchView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/SearchView/SearchView.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/Size View/SizeCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Size View/SizeCollectionView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Size View/SizeCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Size View/SizeCollectionViewCell.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Size View/SizeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Size View/SizeView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Stapper View/StapperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Stapper View/StapperView.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/Stapper View/StapperView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/Stapper View/StapperView.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/TextField/EmTextField/EMTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/TextField/EmTextField/EMTextField.swift -------------------------------------------------------------------------------- /Utilities/Custom Views/TextField/EmTextField/EMTextField.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Custom Views/TextField/EmTextField/EMTextField.xib -------------------------------------------------------------------------------- /Utilities/Extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utilities/Extensions/Collection+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/Collection+.swift -------------------------------------------------------------------------------- /Utilities/Extensions/Foundation/+JSONDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/Foundation/+JSONDecoder.swift -------------------------------------------------------------------------------- /Utilities/Extensions/SectionsLayoutProtocol/SectionsLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/SectionsLayoutProtocol/SectionsLayout.swift -------------------------------------------------------------------------------- /Utilities/Extensions/String/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/String/String+.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIApplicatoin/mainWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UIApplicatoin/mainWindow.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UICollectionView/UICollectionVeiw+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UICollectionView/UICollectionVeiw+Extension.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIColor/+hexString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UIColor/+hexString.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIImageView/+makeRounded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UIImageView/+makeRounded.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UITableView/UITableView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UITableView/UITableView+Extension.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UITextField/UITextField+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UITextField/UITextField+Extension.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIView/drawOnboardingShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UIView/drawOnboardingShape.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIView/maskCustomProductShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UIView/maskCustomProductShape.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIView/parentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UIView/parentViewController.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIViewController/+topMostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Extensions/UIViewController/+topMostViewController.swift -------------------------------------------------------------------------------- /Utilities/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Logger/Logger.swift -------------------------------------------------------------------------------- /Utilities/LottieAnimations-JSON/EcoMarket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/LottieAnimations-JSON/EcoMarket.json -------------------------------------------------------------------------------- /Utilities/Router/AppRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Router/AppRouter.swift -------------------------------------------------------------------------------- /Utilities/Router/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/Router/Router.swift -------------------------------------------------------------------------------- /Utilities/TypeAliases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/Utilities/TypeAliases.swift -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed-yamany/EcoMarket/HEAD/swiftgen.yml --------------------------------------------------------------------------------