├── .DS_Store ├── .gitignore ├── .swiftlint.yml ├── EcoMarket.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── ahmed-yamany.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── EcoMarket ├── AppDelegate.swift ├── Info.plist ├── SceneDelegate.swift └── Scenes │ ├── Onboarding │ ├── .gitkeep │ ├── Login │ │ └── .gitkeep │ ├── Signup │ │ └── .gitkeep │ └── Splash │ │ ├── .gitkeep │ │ ├── LaunchScreen │ │ ├── LaunchViewController.swift │ │ └── LaunchViewController.xib │ │ ├── Onboarding │ │ ├── OnboardingVC+CollectionView.swift │ │ ├── OnboardingViewController.swift │ │ ├── OnboardingViewController.xib │ │ └── OnboardingViewModel.swift │ │ ├── OnboardingData.json │ │ └── Splash │ │ ├── SplashViewController.swift │ │ └── SplashViewController.xib │ ├── TabBar │ ├── .gitkeep │ ├── Cart │ │ └── .gitkeep │ ├── Home │ │ ├── .gitkeep │ │ ├── Categories │ │ │ ├── .gitkeep │ │ │ ├── CategoriesTheme1 │ │ │ │ └── .gitkeep │ │ │ ├── CategoriesTheme2 │ │ │ │ └── .gitkeep │ │ │ └── CategoriesTheme3 │ │ │ │ └── .gitkeep │ │ ├── HomeTheme1 │ │ │ └── .gitkeep │ │ ├── HomeTheme2 │ │ │ └── .gitkeep │ │ ├── HomeTheme3 │ │ │ └── .gitkeep │ │ └── HomeTheme4 │ │ │ └── .gitkeep │ ├── Notifications │ │ └── .gitkeep │ ├── Profile │ │ └── .gitkeep │ └── TabBarController │ │ └── .gitkeep │ └── ViewController.swift ├── EcoMarketTests └── EcoMarketTests.swift ├── EcoMarketUITests ├── EcoMarketUITests.swift └── EcoMarketUITestsLaunchTests.swift ├── Packages └── .gitkeep ├── README.md ├── Resources ├── Assets │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Onboarding │ │ ├── Contents.json │ │ ├── logoVector.imageset │ │ ├── Contents.json │ │ ├── Frame.png │ │ ├── Frame@2x.png │ │ └── Frame@3x.png │ │ ├── onboarding01.imageset │ │ ├── Contents.json │ │ ├── image.png │ │ ├── image@2x.png │ │ └── image@3x.png │ │ ├── onboarding02.imageset │ │ ├── Contents.json │ │ ├── image.png │ │ ├── image@2x.png │ │ └── image@3x.png │ │ ├── onboarding03.imageset │ │ ├── Contents.json │ │ ├── image.png │ │ ├── image@2x.png │ │ └── image@3x.png │ │ ├── onboardingNextButtonVector.imageset │ │ ├── Contents.json │ │ ├── Vector.png │ │ ├── Vector@2x.png │ │ └── Vector@3x.png │ │ ├── splash01.imageset │ │ ├── Contents.json │ │ ├── image 110.png │ │ ├── image 110@2x.png │ │ └── image 110@3x.png │ │ └── splash02.imageset │ │ ├── Contents.json │ │ ├── image 109.png │ │ ├── image 109@2x.png │ │ └── image 109@3x.png ├── Fonts │ └── Fonts.swift ├── Generated │ └── Strings+Generated.swift ├── LaunchScreen │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── ar.lproj │ │ └── LaunchScreen.strings └── Localization │ ├── ar.lproj │ └── Localizable.strings │ └── en.lproj │ └── Localizable.strings ├── Utilities ├── Custom Cells │ ├── .gitkeep │ └── OnboardingCollectionViewCell │ │ ├── OnboardingCollectionViewCell.swift │ │ └── OnboardingCollectionViewCell.xib ├── Custom Views │ ├── .gitkeep │ └── OnboardingCustomPageControl │ │ └── OnboardingCustomPageControl.swift ├── Extensions │ ├── .gitkeep │ ├── UIApplicatoin │ │ └── mainWindow.swift │ ├── UICollectionView │ │ └── UICollectionVeiw+Extension.swift │ ├── UIView │ │ └── parentViewController.swift │ └── UIViewController │ │ └── +topMostViewController.swift ├── Logger │ └── Logger.swift └── Router │ ├── AppRouter.swift │ ├── ModalRouter.swift │ ├── NavigationRouter.swift │ └── Router.swift └── swiftgen.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /EcoMarket.xcodeproj/xcuserdata/ahmed-yamany.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket.xcodeproj/xcuserdata/ahmed-yamany.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /EcoMarket/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/AppDelegate.swift -------------------------------------------------------------------------------- /EcoMarket/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Info.plist -------------------------------------------------------------------------------- /EcoMarket/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/SceneDelegate.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Login/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Signup/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/LaunchScreen/LaunchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/LaunchScreen/LaunchViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/LaunchScreen/LaunchViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/LaunchScreen/LaunchViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingVC+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingVC+CollectionView.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Onboarding/OnboardingViewModel.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/OnboardingData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/OnboardingData.json -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Splash/SplashViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Splash/SplashViewController.swift -------------------------------------------------------------------------------- /EcoMarket/Scenes/Onboarding/Splash/Splash/SplashViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/Onboarding/Splash/Splash/SplashViewController.xib -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Cart/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/CategoriesTheme2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/Categories/CategoriesTheme3/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme3/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Home/HomeTheme4/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Notifications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/Profile/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/TabBar/TabBarController/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EcoMarket/Scenes/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarket/Scenes/ViewController.swift -------------------------------------------------------------------------------- /EcoMarketTests/EcoMarketTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarketTests/EcoMarketTests.swift -------------------------------------------------------------------------------- /EcoMarketUITests/EcoMarketUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarketUITests/EcoMarketUITests.swift -------------------------------------------------------------------------------- /EcoMarketUITests/EcoMarketUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/EcoMarketUITests/EcoMarketUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/logoVector.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/logoVector.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/logoVector.imageset/Frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/logoVector.imageset/Frame.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/logoVector.imageset/Frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/logoVector.imageset/Frame@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/logoVector.imageset/Frame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/logoVector.imageset/Frame@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding01.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding01.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding01.imageset/image.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding01.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding01.imageset/image@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding01.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding01.imageset/image@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding02.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding02.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding02.imageset/image.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding02.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding02.imageset/image@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding02.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding02.imageset/image@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding03.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding03.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding03.imageset/image.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding03.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding03.imageset/image@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboarding03.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboarding03.imageset/image@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboardingNextButtonVector.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboardingNextButtonVector.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboardingNextButtonVector.imageset/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboardingNextButtonVector.imageset/Vector.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboardingNextButtonVector.imageset/Vector@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboardingNextButtonVector.imageset/Vector@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/onboardingNextButtonVector.imageset/Vector@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/onboardingNextButtonVector.imageset/Vector@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash01.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash01.imageset/image 110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash01.imageset/image 110.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash01.imageset/image 110@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash01.imageset/image 110@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash01.imageset/image 110@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash01.imageset/image 110@3x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash02.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash02.imageset/image 109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash02.imageset/image 109.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash02.imageset/image 109@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash02.imageset/image 109@2x.png -------------------------------------------------------------------------------- /Resources/Assets/Assets.xcassets/Onboarding/splash02.imageset/image 109@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Assets/Assets.xcassets/Onboarding/splash02.imageset/image 109@3x.png -------------------------------------------------------------------------------- /Resources/Fonts/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Fonts/Fonts.swift -------------------------------------------------------------------------------- /Resources/Generated/Strings+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Generated/Strings+Generated.swift -------------------------------------------------------------------------------- /Resources/LaunchScreen/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/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/thenasserr/EcoMarket/HEAD/Resources/Localization/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/Localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Resources/Localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Utilities/Custom Cells/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utilities/Custom Cells/OnboardingCollectionViewCell/OnboardingCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Custom Cells/OnboardingCollectionViewCell/OnboardingCollectionViewCell.swift -------------------------------------------------------------------------------- /Utilities/Custom Cells/OnboardingCollectionViewCell/OnboardingCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Custom Cells/OnboardingCollectionViewCell/OnboardingCollectionViewCell.xib -------------------------------------------------------------------------------- /Utilities/Custom Views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utilities/Custom Views/OnboardingCustomPageControl/OnboardingCustomPageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Custom Views/OnboardingCustomPageControl/OnboardingCustomPageControl.swift -------------------------------------------------------------------------------- /Utilities/Extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Utilities/Extensions/UIApplicatoin/mainWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Extensions/UIApplicatoin/mainWindow.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UICollectionView/UICollectionVeiw+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Extensions/UICollectionView/UICollectionVeiw+Extension.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIView/parentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Extensions/UIView/parentViewController.swift -------------------------------------------------------------------------------- /Utilities/Extensions/UIViewController/+topMostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Extensions/UIViewController/+topMostViewController.swift -------------------------------------------------------------------------------- /Utilities/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Logger/Logger.swift -------------------------------------------------------------------------------- /Utilities/Router/AppRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Router/AppRouter.swift -------------------------------------------------------------------------------- /Utilities/Router/ModalRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Router/ModalRouter.swift -------------------------------------------------------------------------------- /Utilities/Router/NavigationRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Router/NavigationRouter.swift -------------------------------------------------------------------------------- /Utilities/Router/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/Utilities/Router/Router.swift -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenasserr/EcoMarket/HEAD/swiftgen.yml --------------------------------------------------------------------------------