├── .swiftlint.yml ├── README.md ├── SampleProject ├── .gitignore ├── .swiftlint.yml ├── DataProvider │ ├── DataProvider.xcodeproj │ │ └── project.pbxproj │ ├── DataProvider │ │ ├── Core │ │ │ ├── APIDecodableResponseRequest.swift │ │ │ ├── DataProviderProtocol.swift │ │ │ ├── DecodableResponseRequest.swift │ │ │ ├── RequestEncoding.swift │ │ │ ├── RequestMethod.swift │ │ │ ├── RequestProtocol.swift │ │ │ └── Typealias.swift │ │ ├── DataProvider.h │ │ ├── Info.plist │ │ ├── Model │ │ │ ├── Auth.swift │ │ │ ├── BaseResponse.swift │ │ │ ├── CategoryDetail.swift │ │ │ ├── Image.swift │ │ │ ├── MainCategory.swift │ │ │ ├── NumberOfPerson.swift │ │ │ ├── Pagination.swift │ │ │ ├── Recipe.swift │ │ │ ├── RecipeComment.swift │ │ │ ├── RecipeDetail.swift │ │ │ ├── RecipeTime.swift │ │ │ ├── SuccessResponse.swift │ │ │ └── User.swift │ │ └── Requests │ │ │ ├── Auth │ │ │ ├── ForgotPasswordRequest.swift │ │ │ ├── LoginRequest.swift │ │ │ ├── LogoutRequest.swift │ │ │ └── RegisterRequest.swift │ │ │ ├── Recipe │ │ │ ├── Comment │ │ │ │ ├── DeleteRecipeCommentRequest.swift │ │ │ │ ├── EditRecipeCommentRequest.swift │ │ │ │ ├── GetRecipeCommentsRequest.swift │ │ │ │ └── PostRecipeCommentRequest.swift │ │ │ ├── GetCategoriesWithRecipesRequest.swift │ │ │ ├── GetRecipeDetailRequest.swift │ │ │ ├── GetRecipesRequest.swift │ │ │ └── RecipeLikeRequest.swift │ │ │ └── User │ │ │ └── UserFollowRequest.swift │ └── DataProviderTests │ │ ├── DataProviderTests-Bridging-Header.h │ │ ├── Info.plist │ │ ├── MockData │ │ ├── JsonFiles │ │ │ ├── Auth │ │ │ │ ├── LoginRequest.json │ │ │ │ ├── LogoutRequest.json │ │ │ │ └── RegisterRequest.json │ │ │ ├── RecipeComments │ │ │ │ ├── DeleteRecipeCommentRequest.json │ │ │ │ ├── EditRecipeCommentRequest.json │ │ │ │ ├── GetRecipeCommentsRequest.json │ │ │ │ └── PostRecipeCommentRequest.json │ │ │ └── Recipes │ │ │ │ ├── GetCategoriesWithRecipesRequest.json │ │ │ │ ├── GetCategoryRecipesRequest.json │ │ │ │ ├── GetEditorChoiceRecipesRequest.json │ │ │ │ ├── GetLastAddedRecipesRequest.json │ │ │ │ ├── GetRecipeDetailRequest.json │ │ │ │ ├── RecipeLikeRequest.json │ │ │ │ └── RecipeUnlikeRequest.json │ │ ├── MockDataProvider.swift │ │ └── RequestProtocol+Extensions.swift │ │ └── RequestsTests │ │ ├── AuthRequestsTests.swift │ │ ├── RecipeCommentsRequestsTests.swift │ │ └── RecipeRequestsTests.swift ├── Podfile ├── Podfile.lock ├── SampleProject.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Debug.xcscheme │ │ ├── Development.xcscheme │ │ └── Release.xcscheme ├── SampleProject.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SampleProject │ ├── AppDelegate │ │ ├── AppDelegate+IQKeyboardManager.swift │ │ ├── AppDelegate+SKPhotoBrowser.swift │ │ └── AppDelegate.swift │ ├── Configurations │ │ ├── BridgingHeader │ │ │ └── SampleProject-Bridging-Header.h │ │ ├── Debug │ │ │ └── Info-Debug.plist │ │ ├── Development │ │ │ └── Info-Development.plist │ │ └── Release │ │ │ └── Info.plist │ ├── Constants │ │ ├── DateFormats.swift │ │ ├── NotificationNames.swift │ │ └── ScreenSize.swift │ ├── DataProvider │ │ ├── APIDataProvider.swift │ │ ├── APILogger.swift │ │ ├── APIRequestAdapter.swift │ │ ├── APIRequestInterceptor.swift │ │ └── DataProvider.swift │ ├── Delegates │ │ └── PhotoBrowserDelegate.swift │ ├── Helper │ │ └── SKPhotoBrowserKingfisherCache.swift │ ├── Resources │ │ └── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ │ └── Contents.json │ ├── Routing │ │ ├── Core │ │ │ ├── Animator.swift │ │ │ └── Router.swift │ │ ├── Routers │ │ │ └── AppRouter.swift │ │ ├── Routes │ │ │ ├── CommentEditDeleteAlertViewRoute.swift │ │ │ ├── SKPhotoBrowserRoute.swift │ │ │ ├── ShareSheetRoute.swift │ │ │ └── UnfollowAlertViewRoute.swift │ │ └── Transitions │ │ │ ├── ModalTransition.swift │ │ │ ├── PlaceOnWindowTransition.swift │ │ │ ├── PushTransition.swift │ │ │ └── Transition.swift │ ├── Scenes │ │ ├── Auth │ │ │ ├── Login │ │ │ │ ├── LoginRoute.swift │ │ │ │ ├── LoginRouter.swift │ │ │ │ ├── LoginViewController.swift │ │ │ │ └── LoginViewModel.swift │ │ │ ├── PasswordReset │ │ │ │ ├── PasswordResetRoute.swift │ │ │ │ ├── PasswordResetRouter.swift │ │ │ │ ├── PasswordResetViewController.swift │ │ │ │ └── PasswordResetViewModel.swift │ │ │ └── Register │ │ │ │ ├── RegisterRoute.swift │ │ │ │ ├── RegisterRouter.swift │ │ │ │ ├── RegisterViewController.swift │ │ │ │ └── RegisterViewModel.swift │ │ ├── Base │ │ │ ├── BaseViewController.swift │ │ │ ├── BaseViewModel.swift │ │ │ ├── MainNavigationController.swift │ │ │ └── TransparentNavigationController.swift │ │ ├── Comment │ │ │ ├── CommentEdit │ │ │ │ ├── CommentEditRoute.swift │ │ │ │ ├── CommentEditRouter.swift │ │ │ │ ├── CommentEditViewController.swift │ │ │ │ └── CommentEditViewModel.swift │ │ │ └── CommentList │ │ │ │ ├── CommentListRoute.swift │ │ │ │ ├── CommentListRouter.swift │ │ │ │ ├── CommentListViewController.swift │ │ │ │ └── CommentListViewModel.swift │ │ ├── Favorites │ │ │ ├── FavoritesRouter.swift │ │ │ ├── FavoritesViewController.swift │ │ │ └── FavoritesViewModel.swift │ │ ├── Home │ │ │ ├── HomeRoute.swift │ │ │ ├── HomeRouter.swift │ │ │ ├── HomeViewController.swift │ │ │ └── HomeViewModel.swift │ │ ├── Launch │ │ │ └── Base.lproj │ │ │ │ └── LaunchScreen.storyboard │ │ ├── LoginWarning │ │ │ ├── LoginWarningPopupRoute.swift │ │ │ ├── LoginWarningPopupRouter.swift │ │ │ ├── LoginWarningPopupViewController.swift │ │ │ └── LoginWarningPopupViewModel.swift │ │ ├── Main │ │ │ ├── MainTabBarController.swift │ │ │ └── MainTabBarRoute.swift │ │ ├── RecipeDetail │ │ │ ├── RecipeDetailRoute.swift │ │ │ ├── RecipeDetailRouter.swift │ │ │ ├── RecipeDetailViewController.swift │ │ │ ├── RecipeDetailViewModel.swift │ │ │ └── SubViews │ │ │ │ └── RecipeDetailHeaderView.swift │ │ ├── Recipes │ │ │ ├── RecipesRoute.swift │ │ │ ├── RecipesRouter.swift │ │ │ ├── RecipesViewController.swift │ │ │ └── RecipesViewModel.swift │ │ └── WalkThrough │ │ │ ├── WalkThroughRoute.swift │ │ │ ├── WalkThroughRouter.swift │ │ │ ├── WalkThroughViewController.swift │ │ │ └── WalkThroughViewModel.swift │ ├── UIComponents │ │ ├── CategoryCellModel+Extension.swift │ │ ├── CommentCellModel+Extensions.swift │ │ └── RecipeCellModel+Extension.swift │ └── Validation │ │ └── Validation.swift ├── SampleProjectTests │ ├── Info.plist │ └── SampleProjectTests.swift ├── SampleProjectUITests │ ├── Info.plist │ └── SampleProjectUITests.swift ├── SwiftGenTemplates │ ├── Icons.stencil │ ├── colors.stencil │ └── images.stencil ├── UIComponents │ ├── UIComponents.xcodeproj │ │ └── project.pbxproj │ ├── UIComponents │ │ ├── Cell │ │ │ ├── CategoryWithRecipesCell │ │ │ │ ├── CategoryWithRecipesCell.swift │ │ │ │ └── CategoryWithRecipesCellModel.swift │ │ │ ├── CommentCell │ │ │ │ ├── CommentCell.swift │ │ │ │ └── CommentCellModel.swift │ │ │ ├── EmptyCell │ │ │ │ ├── EmptyCell.swift │ │ │ │ └── EmptyCellModel.swift │ │ │ ├── RecipeCell │ │ │ │ ├── RecipeCell.swift │ │ │ │ ├── RecipeCellModel.swift │ │ │ │ └── RecipeSmallCell.swift │ │ │ ├── RecipeHeaderCell │ │ │ │ ├── RecipeHeaderCell.swift │ │ │ │ └── RecipeHeaderCellModel.swift │ │ │ └── WalkThroughCell │ │ │ │ ├── WalkThroughCell.swift │ │ │ │ └── WalkThroughCellModel.swift │ │ ├── Extensions │ │ │ ├── ReusableView+Extensions.swift │ │ │ ├── SegmentioOptions+Extensions.swift │ │ │ ├── UICollectionView+Extensions.swift │ │ │ ├── UIImage+Extensions.swift │ │ │ ├── UIImageView+Extensions.swift │ │ │ └── UITableView+Extensions.swift │ │ ├── Factory │ │ │ └── ButtonFactory.swift │ │ ├── Info.plist │ │ ├── Loading │ │ │ ├── ActivityIndicatorFooterView │ │ │ │ └── ActivityIndicatorFooterView.swift │ │ │ ├── ActivityIndicatorProtocol.swift │ │ │ ├── BlockingActivityIndicator.swift │ │ │ └── LoadingProtocol.swift │ │ ├── Protocols │ │ │ ├── ReusableView.swift │ │ │ └── TextFieldDataSource.swift │ │ ├── Resources │ │ │ ├── Assets │ │ │ │ ├── Assets.swift │ │ │ │ ├── Colors.xcassets │ │ │ │ │ ├── Background │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── appPrimaryBackground.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── appSecondaryBackground.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── appCinder.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── appHeather.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── appRaven.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── appRed.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── appWhite.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── appYellow.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── appZircon.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Icons.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ic_back.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_back.pdf │ │ │ │ │ ├── ic_clock.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_clock.pdf │ │ │ │ │ ├── ic_close.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_close.pdf │ │ │ │ │ ├── ic_comment.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_comment.pdf │ │ │ │ │ ├── ic_heart.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_heart.pdf │ │ │ │ │ ├── ic_home.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_home.pdf │ │ │ │ │ ├── ic_logout.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_logout.pdf │ │ │ │ │ ├── ic_mail.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_mail.pdf │ │ │ │ │ ├── ic_menu.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_menu.pdf │ │ │ │ │ ├── ic_more.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_more.pdf │ │ │ │ │ ├── ic_password.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_password.pdf │ │ │ │ │ ├── ic_restaurant.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_restaurant.pdf │ │ │ │ │ ├── ic_send.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_send.pdf │ │ │ │ │ ├── ic_share.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_share.pdf │ │ │ │ │ ├── ic_user.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_user.pdf │ │ │ │ │ ├── ic_users.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_users.pdf │ │ │ │ │ └── ic_warning.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── ic_warning.pdf │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── img_editors_pick.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_editors_pick.pdf │ │ │ │ │ ├── img_logo_fodamy.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_logo_fodamy.pdf │ │ │ │ │ ├── img_walkthrough_1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_walkthrough_1.pdf │ │ │ │ │ ├── img_walkthrough_2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_walkthrough_2.pdf │ │ │ │ │ ├── img_walkthrough_3.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_walkthrough_3.pdf │ │ │ │ │ └── img_walkthrough_4.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── img_walkthrough_4.pdf │ │ │ │ ├── UIColor+Colors.swift │ │ │ │ ├── UIImage+Icons.swift │ │ │ │ └── UIImage+Images.swift │ │ │ ├── Fonts │ │ │ │ ├── Fonts.swift │ │ │ │ ├── Nunito-Bold.ttf │ │ │ │ ├── Nunito-ExtraBold.ttf │ │ │ │ ├── Nunito-SemiBold.ttf │ │ │ │ └── UIFont+Extensions.swift │ │ │ └── Strings │ │ │ │ ├── Componenets.strings │ │ │ │ ├── Error.strings │ │ │ │ ├── General.strings │ │ │ │ ├── Modules.strings │ │ │ │ ├── Placeholder.strings │ │ │ │ └── StringConstants.swift │ │ ├── Toast │ │ │ ├── ToastPresenter.swift │ │ │ └── TostWarningView.swift │ │ ├── UIActivityIndicatorView │ │ │ └── ActivityIndicatorView.swift │ │ ├── UICollectionView │ │ │ └── DynamicHeightCollectionView.swift │ │ ├── UIComponents.h │ │ ├── UILabel │ │ │ └── PaddingLabel.swift │ │ ├── UIPageControl │ │ │ └── PageControl.swift │ │ ├── UITextField │ │ │ └── FloatLabelTextField.swift │ │ └── UIView │ │ │ ├── CommentInputView.swift │ │ │ ├── CountInfoView.swift │ │ │ ├── RecipeDetailInfoView.swift │ │ │ ├── RecipeDetailTitlesView.swift │ │ │ ├── RecipeSmallCellView.swift │ │ │ └── UserView.swift │ ├── UIComponentsTests │ │ └── Info.plist │ └── swiftgen.yml └── Utilities │ ├── Utilities.xcodeproj │ └── project.pbxproj │ ├── Utilities │ ├── Constants │ │ ├── Closures.swift │ │ ├── DefaultsKeys.swift │ │ └── Keychain+Constants.swift │ ├── Extensions │ │ ├── Int+Extensions.swift │ │ ├── String+Extensions.swift │ │ └── UITextField+Extensions.swift │ ├── Helper │ │ └── KeyboardHelper.swift │ ├── Info.plist │ └── Utilities.h │ └── UtilitiesTests │ ├── ExtensionsTests │ ├── Int+ExtensionsTests.swift │ ├── String+ExtensionsTests.swift │ └── UITextField+ExtensionsTests.swift │ ├── Info.plist │ └── UtilitiesTests-Bridging-Header.h ├── SampleProjectSwiftUI ├── .gitignore ├── .swiftlint.yml ├── Core │ ├── Components │ │ ├── .gitignore │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Components.xcscheme │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── Components │ │ │ │ ├── Button │ │ │ │ └── PrimaryLargeButton.swift │ │ │ │ ├── Entity │ │ │ │ └── DeviceName.swift │ │ │ │ ├── Extensions │ │ │ │ ├── Color+Extensions.swift │ │ │ │ ├── EnvironmentValues+Extensions.swift │ │ │ │ ├── Int+Extensions.swift │ │ │ │ └── UIEdgeInsets+Extensions.swift │ │ │ │ ├── HorizontalRecipesHeaderView │ │ │ │ ├── HorizontalRecipesHeaderView.swift │ │ │ │ └── HorizontalRecipesHeaderViewModel.swift │ │ │ │ ├── HorizontalRecipesView │ │ │ │ ├── HorizontalRecipesView.swift │ │ │ │ └── HorizontalRecipesViewModel.swift │ │ │ │ ├── Loading │ │ │ │ └── FullScreenLoadingView.swift │ │ │ │ ├── Modifier │ │ │ │ └── CornerRadiusStyle.swift │ │ │ │ ├── Onboarding │ │ │ │ ├── OnboardingView.swift │ │ │ │ └── OnboardingViewModel.swift │ │ │ │ ├── PageControl │ │ │ │ └── PageControl.swift │ │ │ │ ├── Recipe │ │ │ │ ├── HorizontalRecipeView.swift │ │ │ │ ├── RecipeView.swift │ │ │ │ └── RecipeViewModel.swift │ │ │ │ ├── Resources │ │ │ │ ├── Assets │ │ │ │ │ ├── Assets.swift │ │ │ │ │ ├── Colors.xcassets │ │ │ │ │ │ ├── Background │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── appPrimaryBackground.colorset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── appSecondaryBackground.colorset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── appCinder.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── appHeather.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── appRaven.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── appRed.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── appSeparator.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── appShadow.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── appWhite.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── appYellow.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── appZircon.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Icons.xcassets │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ic_back.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_back.pdf │ │ │ │ │ │ ├── ic_clock.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_clock.pdf │ │ │ │ │ │ ├── ic_close.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_close.pdf │ │ │ │ │ │ ├── ic_comment.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_comment.pdf │ │ │ │ │ │ ├── ic_heart.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_heart.pdf │ │ │ │ │ │ ├── ic_home.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_home.pdf │ │ │ │ │ │ ├── ic_logout.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_logout.pdf │ │ │ │ │ │ ├── ic_mail.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_mail.pdf │ │ │ │ │ │ ├── ic_menu.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_menu.pdf │ │ │ │ │ │ ├── ic_more.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_more.pdf │ │ │ │ │ │ ├── ic_password.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_password.pdf │ │ │ │ │ │ ├── ic_restaurant.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_restaurant.pdf │ │ │ │ │ │ ├── ic_send.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_send.pdf │ │ │ │ │ │ ├── ic_share.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_share.pdf │ │ │ │ │ │ ├── ic_user.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_user.pdf │ │ │ │ │ │ ├── ic_users.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_users.pdf │ │ │ │ │ │ └── ic_warning.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── ic_warning.pdf │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── img_editors_pick.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_editors_pick.pdf │ │ │ │ │ │ ├── img_logo_fodamy.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_logo_fodamy.pdf │ │ │ │ │ │ ├── img_walkthrough_1.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_walkthrough_1.pdf │ │ │ │ │ │ ├── img_walkthrough_2.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_walkthrough_2.pdf │ │ │ │ │ │ ├── img_walkthrough_3.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_walkthrough_3.pdf │ │ │ │ │ │ └── img_walkthrough_4.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── img_walkthrough_4.pdf │ │ │ │ │ ├── UIColor+Colors.swift │ │ │ │ │ ├── UIImage+Icons.swift │ │ │ │ │ └── UIImage+Images.swift │ │ │ │ ├── Fonts │ │ │ │ │ ├── Font+Extensions.swift │ │ │ │ │ ├── Fonts.swift │ │ │ │ │ ├── Nunito-Bold.ttf │ │ │ │ │ ├── Nunito-ExtraBold.ttf │ │ │ │ │ └── Nunito-SemiBold.ttf │ │ │ │ └── Strings │ │ │ │ │ ├── Componenets.strings │ │ │ │ │ ├── Error.strings │ │ │ │ │ ├── General.strings │ │ │ │ │ ├── Modules.strings │ │ │ │ │ ├── Placeholder.strings │ │ │ │ │ └── StringConstants.swift │ │ │ │ ├── User │ │ │ │ ├── UserInfoView.swift │ │ │ │ ├── UserView.swift │ │ │ │ └── UserViewModel.swift │ │ │ │ └── View │ │ │ │ └── AppSegmentView │ │ │ │ └── AppSegmentView.swift │ │ └── Tests │ │ │ └── ComponentsTests │ │ │ └── ComponentsTests.swift │ ├── DataProvider │ │ ├── .gitignore │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── DataProvider.xcscheme │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── DataProvider │ │ │ │ ├── FodamyDataProvider │ │ │ │ ├── APIDataProvider.swift │ │ │ │ ├── APIDecodableResponseRequest.swift │ │ │ │ ├── APILogger.swift │ │ │ │ ├── APIRequestAdapter.swift │ │ │ │ └── APIRequestInterceptor.swift │ │ │ │ ├── Model │ │ │ │ ├── Auth.swift │ │ │ │ ├── BaseResponse.swift │ │ │ │ ├── CategoryDetail.swift │ │ │ │ ├── Image.swift │ │ │ │ ├── MainCategory.swift │ │ │ │ ├── NumberOfPerson.swift │ │ │ │ ├── Pagination.swift │ │ │ │ ├── Recipe.swift │ │ │ │ ├── RecipeComment.swift │ │ │ │ ├── RecipeDetail.swift │ │ │ │ ├── RecipeListType.swift │ │ │ │ ├── RecipeTime.swift │ │ │ │ ├── SuccessResponse.swift │ │ │ │ └── User.swift │ │ │ │ ├── Repository │ │ │ │ ├── AuthRepository.swift │ │ │ │ ├── BaseRepository.swift │ │ │ │ ├── RecipeCommentRepository.swift │ │ │ │ ├── RecipeLikeRepository.swift │ │ │ │ └── RecipeRepository.swift │ │ │ │ └── Requests │ │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordRequest.swift │ │ │ │ ├── LoginRequest.swift │ │ │ │ ├── LogoutRequest.swift │ │ │ │ └── RegisterRequest.swift │ │ │ │ ├── Recipe │ │ │ │ ├── Comment │ │ │ │ │ ├── AddRecipeCommentRequest.swift │ │ │ │ │ ├── DeleteRecipeCommentRequest.swift │ │ │ │ │ ├── EditRecipeCommentRequest.swift │ │ │ │ │ └── GetRecipeCommentsRequest.swift │ │ │ │ ├── GetCategoriesWithRecipesRequest.swift │ │ │ │ ├── GetRecipeDetailRequest.swift │ │ │ │ ├── GetRecipesRequest.swift │ │ │ │ └── Like │ │ │ │ │ ├── AddRecipeLikeRequest.swift │ │ │ │ │ └── DeleteRecipeLikeRequest.swift │ │ │ │ └── User │ │ │ │ └── Follow │ │ │ │ ├── AddUserFollowRequest.swift │ │ │ │ └── DeleteUserFollowRequest.swift │ │ └── Tests │ │ │ └── DataProviderTests │ │ │ └── DataProviderTests.swift │ ├── Network │ │ ├── .gitignore │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Network-Package.xcscheme │ │ │ │ └── Network.xcscheme │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── Network │ │ │ │ └── Core │ │ │ │ ├── DataProviderProtocol.swift │ │ │ │ ├── DecodableResponseRequest.swift │ │ │ │ ├── RequestEncoding.swift │ │ │ │ ├── RequestMethod.swift │ │ │ │ ├── RequestProtocol.swift │ │ │ │ └── Typealias.swift │ │ └── Tests │ │ │ └── NetworkTests │ │ │ └── NetworkTests.swift │ └── Utilities │ │ ├── .gitignore │ │ ├── .swiftpm │ │ └── xcode │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Utilities.xcscheme │ │ ├── Package.swift │ │ ├── Sources │ │ └── Utilities │ │ │ └── Constants │ │ │ └── Closures.swift │ │ └── Tests │ │ └── UtilitiesTests │ │ └── UtilitiesTests.swift ├── Packages │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── SampleProjectSwiftUIPackages │ │ │ └── SampleProjectSwiftUIPackages.swift │ │ └── UIComponentsPackages │ │ │ └── UIComponentsPackages.swift │ └── Tests │ │ └── PackagesTests │ │ └── PackagesTests.swift ├── SampleProjectSwiftUI.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ └── mehmetsalihaslan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── SampleProjectSwiftUI.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── swiftpm │ │ └── Package.resolved ├── SampleProjectSwiftUI │ ├── App │ │ └── SampleProjectSwiftUIApp.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── fodamy-logo.imageset │ │ │ ├── Contents.json │ │ │ └── fodamy-logo.pdf │ │ ├── ic_heart.imageset │ │ │ ├── Contents.json │ │ │ └── ic_heart.pdf │ │ └── ic_home.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home.pdf │ ├── Constants │ │ └── DefaultKeys.swift │ ├── DataProvider │ │ └── DataProvider.swift │ ├── Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Router │ │ └── Router.swift │ ├── Scene │ │ ├── Base │ │ │ ├── BaseScene.swift │ │ │ └── BaseSceneModel.swift │ │ ├── Favorites │ │ │ ├── FavoritesScene.swift │ │ │ └── FavoritesSceneModel.swift │ │ ├── Home │ │ │ ├── HomeScene.swift │ │ │ └── HomeSceneModel.swift │ │ ├── Launch │ │ │ └── LaunchScreen.storyboard │ │ ├── MainTabScene │ │ │ ├── MainTabScene.swift │ │ │ └── MainTabSceneModel.swift │ │ ├── Onboarding │ │ │ ├── OnboardingScene.swift │ │ │ └── OnboardingSceneModel.swift │ │ ├── RecipeDetail │ │ │ ├── RecipeDetailScene.swift │ │ │ └── RecipeDetailSceneModel.swift │ │ ├── Recipes │ │ │ ├── RecipesScene.swift │ │ │ └── RecipesSceneModel.swift │ │ ├── Root │ │ │ ├── RootScene.swift │ │ │ └── RootSceneModel.swift │ │ └── Splash │ │ │ ├── SplashScene.swift │ │ │ └── SplashSceneModel.swift │ └── UIComponents │ │ ├── RecipeViewModel+Extensions.swift │ │ └── UserViewModel+Extensions.swift ├── SampleProjectSwiftUITests │ └── SampleProjectSwiftUITests.swift ├── SampleProjectSwiftUIUITests │ ├── SampleProjectSwiftUIUITests.swift │ └── SampleProjectSwiftUIUITestsLaunchTests.swift ├── SwiftGenTemplates │ ├── Icons.stencil │ ├── colors.stencil │ └── images.stencil └── Xcode Templates │ ├── Source │ └── SwiftUI Templates │ │ ├── SwiftUI Scene.xctemplate │ │ ├── Default │ │ │ ├── ___FILEBASENAME___Scene.swift │ │ │ └── ___FILEBASENAME___SceneModel.swift │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ ├── TemplateInfo.plist │ │ └── WithBaseView │ │ │ ├── ___FILEBASENAME___Scene.swift │ │ │ └── ___FILEBASENAME___SceneModel.swift │ │ └── SwiftUI View.xctemplate │ │ ├── Default │ │ ├── ___FILEBASENAME___View.swift │ │ └── ___FILEBASENAME___ViewModel.swift │ │ ├── Identifiable │ │ ├── ___FILEBASENAME___View.swift │ │ └── ___FILEBASENAME___ViewModel.swift │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ └── TemplateInfo.plist │ ├── install-templates │ └── install-templates.md ├── Templates ├── Source │ └── Mobillium Templates │ │ ├── CollectionViewCell.xctemplate │ │ ├── Default │ │ │ ├── ___FILEBASENAME___Cell.swift │ │ │ └── ___FILEBASENAME___CellModel.swift │ │ ├── Public │ │ │ ├── ___FILEBASENAME___Cell.swift │ │ │ └── ___FILEBASENAME___CellModel.swift │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ └── TemplateInfo.plist │ │ ├── CustomView+Model.xctemplate │ │ ├── Default │ │ │ ├── ___FILEBASENAME___.swift │ │ │ └── ___FILEBASENAME___Model.swift │ │ ├── Public │ │ │ ├── ___FILEBASENAME___.swift │ │ │ └── ___FILEBASENAME___Model.swift │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ └── TemplateInfo.plist │ │ ├── CustomView.xctemplate │ │ ├── Default │ │ │ └── ___FILEBASENAME___.swift │ │ ├── Public │ │ │ └── ___FILEBASENAME___.swift │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ └── TemplateInfo.plist │ │ ├── MVVM-R Modal Route.xctemplate │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ ├── TemplateInfo.plist │ │ └── ___FILEBASENAME___Route.swift │ │ ├── MVVM-R Push Route.xctemplate │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ ├── TemplateInfo.plist │ │ └── ___FILEBASENAME___Route.swift │ │ ├── MVVM-R Scene.xctemplate │ │ ├── CollectionViewDelegate │ │ │ ├── ___FILEBASENAME___Router.swift │ │ │ ├── ___FILEBASENAME___ViewController.swift │ │ │ └── ___FILEBASENAME___ViewModel.swift │ │ ├── Default │ │ │ ├── ___FILEBASENAME___Router.swift │ │ │ ├── ___FILEBASENAME___ViewController.swift │ │ │ └── ___FILEBASENAME___ViewModel.swift │ │ ├── TableViewDelegate │ │ │ ├── ___FILEBASENAME___Router.swift │ │ │ ├── ___FILEBASENAME___ViewController.swift │ │ │ └── ___FILEBASENAME___ViewModel.swift │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ └── TemplateInfo.plist │ │ ├── Request.xctemplate │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ ├── TemplateInfo.plist │ │ └── ___FILEBASENAME___Request.swift │ │ └── TableViewCell.xctemplate │ │ ├── Default │ │ ├── ___FILEBASENAME___Cell.swift │ │ └── ___FILEBASENAME___CellModel.swift │ │ ├── Public │ │ ├── ___FILEBASENAME___Cell.swift │ │ └── ___FILEBASENAME___CellModel.swift │ │ ├── TemplateIcon.png │ │ ├── TemplateIcon@2x.png │ │ └── TemplateInfo.plist ├── install-templates └── install-templates.md ├── project-folder-structure.md ├── resources-guideline.md └── swift-guideline.md /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/README.md -------------------------------------------------------------------------------- /SampleProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/.gitignore -------------------------------------------------------------------------------- /SampleProject/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/.swiftlint.yml -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Core/APIDecodableResponseRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Core/APIDecodableResponseRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Core/DataProviderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Core/DataProviderProtocol.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Core/DecodableResponseRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Core/DecodableResponseRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Core/RequestEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Core/RequestEncoding.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Core/RequestMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Core/RequestMethod.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Core/RequestProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Core/RequestProtocol.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Core/Typealias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Core/Typealias.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/DataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/DataProvider.h -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Info.plist -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/Auth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/Auth.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/BaseResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/BaseResponse.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/CategoryDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/CategoryDetail.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/Image.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/MainCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/MainCategory.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/NumberOfPerson.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/NumberOfPerson.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/Pagination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/Pagination.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/Recipe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/Recipe.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/RecipeComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/RecipeComment.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/RecipeDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/RecipeDetail.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/RecipeTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/RecipeTime.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/SuccessResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/SuccessResponse.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Model/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Model/User.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Auth/ForgotPasswordRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Auth/ForgotPasswordRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Auth/LoginRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Auth/LoginRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Auth/LogoutRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Auth/LogoutRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Auth/RegisterRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Auth/RegisterRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Recipe/Comment/DeleteRecipeCommentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Recipe/Comment/DeleteRecipeCommentRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Recipe/Comment/EditRecipeCommentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Recipe/Comment/EditRecipeCommentRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Recipe/Comment/GetRecipeCommentsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Recipe/Comment/GetRecipeCommentsRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Recipe/Comment/PostRecipeCommentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Recipe/Comment/PostRecipeCommentRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Recipe/GetCategoriesWithRecipesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Recipe/GetCategoriesWithRecipesRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Recipe/GetRecipeDetailRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Recipe/GetRecipeDetailRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Recipe/GetRecipesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Recipe/GetRecipesRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/Recipe/RecipeLikeRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/Recipe/RecipeLikeRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProvider/Requests/User/UserFollowRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProvider/Requests/User/UserFollowRequest.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/DataProviderTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/DataProviderTests-Bridging-Header.h -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/Info.plist -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Auth/LoginRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Auth/LoginRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Auth/LogoutRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Auth/LogoutRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Auth/RegisterRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Auth/RegisterRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/RecipeComments/DeleteRecipeCommentRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/RecipeComments/DeleteRecipeCommentRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/RecipeComments/EditRecipeCommentRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/RecipeComments/EditRecipeCommentRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/RecipeComments/GetRecipeCommentsRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/RecipeComments/GetRecipeCommentsRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/RecipeComments/PostRecipeCommentRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/RecipeComments/PostRecipeCommentRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetCategoriesWithRecipesRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetCategoriesWithRecipesRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetCategoryRecipesRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetCategoryRecipesRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetEditorChoiceRecipesRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetEditorChoiceRecipesRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetLastAddedRecipesRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetLastAddedRecipesRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetRecipeDetailRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/GetRecipeDetailRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/RecipeLikeRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/RecipeLikeRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/RecipeUnlikeRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/JsonFiles/Recipes/RecipeUnlikeRequest.json -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/MockDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/MockDataProvider.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/MockData/RequestProtocol+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/MockData/RequestProtocol+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/RequestsTests/AuthRequestsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/RequestsTests/AuthRequestsTests.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/RequestsTests/RecipeCommentsRequestsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/RequestsTests/RecipeCommentsRequestsTests.swift -------------------------------------------------------------------------------- /SampleProject/DataProvider/DataProviderTests/RequestsTests/RecipeRequestsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/DataProvider/DataProviderTests/RequestsTests/RecipeRequestsTests.swift -------------------------------------------------------------------------------- /SampleProject/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Podfile -------------------------------------------------------------------------------- /SampleProject/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Podfile.lock -------------------------------------------------------------------------------- /SampleProject/SampleProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleProject/SampleProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SampleProject/SampleProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SampleProject/SampleProject.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject.xcodeproj/xcshareddata/xcschemes/Debug.xcscheme -------------------------------------------------------------------------------- /SampleProject/SampleProject.xcodeproj/xcshareddata/xcschemes/Development.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject.xcodeproj/xcshareddata/xcschemes/Development.xcscheme -------------------------------------------------------------------------------- /SampleProject/SampleProject.xcodeproj/xcshareddata/xcschemes/Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject.xcodeproj/xcshareddata/xcschemes/Release.xcscheme -------------------------------------------------------------------------------- /SampleProject/SampleProject.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SampleProject/SampleProject.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SampleProject/SampleProject/AppDelegate/AppDelegate+IQKeyboardManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/AppDelegate/AppDelegate+IQKeyboardManager.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/AppDelegate/AppDelegate+SKPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/AppDelegate/AppDelegate+SKPhotoBrowser.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Configurations/BridgingHeader/SampleProject-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Configurations/BridgingHeader/SampleProject-Bridging-Header.h -------------------------------------------------------------------------------- /SampleProject/SampleProject/Configurations/Debug/Info-Debug.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Configurations/Debug/Info-Debug.plist -------------------------------------------------------------------------------- /SampleProject/SampleProject/Configurations/Development/Info-Development.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Configurations/Development/Info-Development.plist -------------------------------------------------------------------------------- /SampleProject/SampleProject/Configurations/Release/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Configurations/Release/Info.plist -------------------------------------------------------------------------------- /SampleProject/SampleProject/Constants/DateFormats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Constants/DateFormats.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Constants/NotificationNames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Constants/NotificationNames.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Constants/ScreenSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Constants/ScreenSize.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/DataProvider/APIDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/DataProvider/APIDataProvider.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/DataProvider/APILogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/DataProvider/APILogger.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/DataProvider/APIRequestAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/DataProvider/APIRequestAdapter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/DataProvider/APIRequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/DataProvider/APIRequestInterceptor.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/DataProvider/DataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/DataProvider/DataProvider.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Delegates/PhotoBrowserDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Delegates/PhotoBrowserDelegate.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Helper/SKPhotoBrowserKingfisherCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Helper/SKPhotoBrowserKingfisherCache.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleProject/SampleProject/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Core/Animator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Core/Animator.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Core/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Core/Router.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Routers/AppRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Routers/AppRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Routes/CommentEditDeleteAlertViewRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Routes/CommentEditDeleteAlertViewRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Routes/SKPhotoBrowserRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Routes/SKPhotoBrowserRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Routes/ShareSheetRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Routes/ShareSheetRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Routes/UnfollowAlertViewRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Routes/UnfollowAlertViewRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Transitions/ModalTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Transitions/ModalTransition.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Transitions/PlaceOnWindowTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Transitions/PlaceOnWindowTransition.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Transitions/PushTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Transitions/PushTransition.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Routing/Transitions/Transition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Routing/Transitions/Transition.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/Login/LoginRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/Login/LoginRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/Login/LoginRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/Login/LoginRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/Login/LoginViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/Login/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/Login/LoginViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/PasswordReset/PasswordResetRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/PasswordReset/PasswordResetRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/PasswordReset/PasswordResetRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/PasswordReset/PasswordResetRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/PasswordReset/PasswordResetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/PasswordReset/PasswordResetViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/PasswordReset/PasswordResetViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/PasswordReset/PasswordResetViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/Register/RegisterRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/Register/RegisterRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/Register/RegisterRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/Register/RegisterRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/Register/RegisterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/Register/RegisterViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Auth/Register/RegisterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Auth/Register/RegisterViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Base/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Base/BaseViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Base/BaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Base/BaseViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Base/MainNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Base/MainNavigationController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Base/TransparentNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Base/TransparentNavigationController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Comment/CommentEdit/CommentEditRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Comment/CommentEdit/CommentEditRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Comment/CommentEdit/CommentEditRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Comment/CommentEdit/CommentEditRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Comment/CommentEdit/CommentEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Comment/CommentEdit/CommentEditViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Comment/CommentEdit/CommentEditViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Comment/CommentEdit/CommentEditViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Comment/CommentList/CommentListRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Comment/CommentList/CommentListRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Comment/CommentList/CommentListRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Comment/CommentList/CommentListRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Comment/CommentList/CommentListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Comment/CommentList/CommentListViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Comment/CommentList/CommentListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Comment/CommentList/CommentListViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Favorites/FavoritesRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Favorites/FavoritesRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Favorites/FavoritesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Favorites/FavoritesViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Favorites/FavoritesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Favorites/FavoritesViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Home/HomeRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Home/HomeRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Home/HomeRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Home/HomeRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Home/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Home/HomeViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Home/HomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Home/HomeViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Launch/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Launch/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/LoginWarning/LoginWarningPopupRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/LoginWarning/LoginWarningPopupRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/LoginWarning/LoginWarningPopupRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/LoginWarning/LoginWarningPopupRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/LoginWarning/LoginWarningPopupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/LoginWarning/LoginWarningPopupViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/LoginWarning/LoginWarningPopupViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/LoginWarning/LoginWarningPopupViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Main/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Main/MainTabBarController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Main/MainTabBarRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Main/MainTabBarRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/RecipeDetail/RecipeDetailRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/RecipeDetail/RecipeDetailRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/RecipeDetail/RecipeDetailRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/RecipeDetail/RecipeDetailRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/RecipeDetail/RecipeDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/RecipeDetail/RecipeDetailViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/RecipeDetail/RecipeDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/RecipeDetail/RecipeDetailViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/RecipeDetail/SubViews/RecipeDetailHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/RecipeDetail/SubViews/RecipeDetailHeaderView.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Recipes/RecipesRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Recipes/RecipesRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Recipes/RecipesRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Recipes/RecipesRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Recipes/RecipesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Recipes/RecipesViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/Recipes/RecipesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/Recipes/RecipesViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/WalkThrough/WalkThroughRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/WalkThrough/WalkThroughRoute.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/WalkThrough/WalkThroughRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/WalkThrough/WalkThroughRouter.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/WalkThrough/WalkThroughViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/WalkThrough/WalkThroughViewController.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Scenes/WalkThrough/WalkThroughViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Scenes/WalkThrough/WalkThroughViewModel.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/UIComponents/CategoryCellModel+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/UIComponents/CategoryCellModel+Extension.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/UIComponents/CommentCellModel+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/UIComponents/CommentCellModel+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/UIComponents/RecipeCellModel+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/UIComponents/RecipeCellModel+Extension.swift -------------------------------------------------------------------------------- /SampleProject/SampleProject/Validation/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProject/Validation/Validation.swift -------------------------------------------------------------------------------- /SampleProject/SampleProjectTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProjectTests/Info.plist -------------------------------------------------------------------------------- /SampleProject/SampleProjectTests/SampleProjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProjectTests/SampleProjectTests.swift -------------------------------------------------------------------------------- /SampleProject/SampleProjectUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProjectUITests/Info.plist -------------------------------------------------------------------------------- /SampleProject/SampleProjectUITests/SampleProjectUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SampleProjectUITests/SampleProjectUITests.swift -------------------------------------------------------------------------------- /SampleProject/SwiftGenTemplates/Icons.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SwiftGenTemplates/Icons.stencil -------------------------------------------------------------------------------- /SampleProject/SwiftGenTemplates/colors.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SwiftGenTemplates/colors.stencil -------------------------------------------------------------------------------- /SampleProject/SwiftGenTemplates/images.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/SwiftGenTemplates/images.stencil -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/CategoryWithRecipesCell/CategoryWithRecipesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/CategoryWithRecipesCell/CategoryWithRecipesCell.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/CategoryWithRecipesCell/CategoryWithRecipesCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/CategoryWithRecipesCell/CategoryWithRecipesCellModel.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/CommentCell/CommentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/CommentCell/CommentCell.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/CommentCell/CommentCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/CommentCell/CommentCellModel.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/EmptyCell/EmptyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/EmptyCell/EmptyCell.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/EmptyCell/EmptyCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/EmptyCell/EmptyCellModel.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/RecipeCell/RecipeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/RecipeCell/RecipeCell.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/RecipeCell/RecipeCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/RecipeCell/RecipeCellModel.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/RecipeCell/RecipeSmallCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/RecipeCell/RecipeSmallCell.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/RecipeHeaderCell/RecipeHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/RecipeHeaderCell/RecipeHeaderCell.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/RecipeHeaderCell/RecipeHeaderCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/RecipeHeaderCell/RecipeHeaderCellModel.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/WalkThroughCell/WalkThroughCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/WalkThroughCell/WalkThroughCell.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Cell/WalkThroughCell/WalkThroughCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Cell/WalkThroughCell/WalkThroughCellModel.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Extensions/ReusableView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Extensions/ReusableView+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Extensions/SegmentioOptions+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Extensions/SegmentioOptions+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Extensions/UICollectionView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Extensions/UICollectionView+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Extensions/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Extensions/UIImage+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Extensions/UIImageView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Extensions/UIImageView+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Extensions/UITableView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Extensions/UITableView+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Factory/ButtonFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Factory/ButtonFactory.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Info.plist -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Loading/ActivityIndicatorFooterView/ActivityIndicatorFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Loading/ActivityIndicatorFooterView/ActivityIndicatorFooterView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Loading/ActivityIndicatorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Loading/ActivityIndicatorProtocol.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Loading/BlockingActivityIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Loading/BlockingActivityIndicator.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Loading/LoadingProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Loading/LoadingProtocol.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Protocols/ReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Protocols/ReusableView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Protocols/TextFieldDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Protocols/TextFieldDataSource.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Assets.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/Background/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/Background/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/Background/appPrimaryBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/Background/appPrimaryBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/Background/appSecondaryBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/Background/appSecondaryBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appCinder.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appCinder.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appHeather.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appHeather.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appRaven.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appRaven.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appRed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appRed.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appWhite.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appWhite.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appYellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appYellow.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appZircon.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Colors.xcassets/appZircon.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_back.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_back.imageset/ic_back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_back.imageset/ic_back.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_clock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_clock.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_clock.imageset/ic_clock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_clock.imageset/ic_clock.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_close.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_close.imageset/ic_close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_close.imageset/ic_close.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_comment.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_comment.imageset/ic_comment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_comment.imageset/ic_comment.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_heart.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_heart.imageset/ic_heart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_heart.imageset/ic_heart.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_home.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_home.imageset/ic_home.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_home.imageset/ic_home.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_logout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_logout.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_logout.imageset/ic_logout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_logout.imageset/ic_logout.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_mail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_mail.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_mail.imageset/ic_mail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_mail.imageset/ic_mail.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_menu.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_menu.imageset/ic_menu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_menu.imageset/ic_menu.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_more.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_more.imageset/ic_more.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_more.imageset/ic_more.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_password.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_password.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_password.imageset/ic_password.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_password.imageset/ic_password.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_restaurant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_restaurant.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_restaurant.imageset/ic_restaurant.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_restaurant.imageset/ic_restaurant.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_send.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_send.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_send.imageset/ic_send.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_send.imageset/ic_send.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_share.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_share.imageset/ic_share.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_share.imageset/ic_share.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_user.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_user.imageset/ic_user.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_user.imageset/ic_user.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_users.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_users.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_users.imageset/ic_users.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_users.imageset/ic_users.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_warning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_warning.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_warning.imageset/ic_warning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Icons.xcassets/ic_warning.imageset/ic_warning.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_editors_pick.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_editors_pick.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_editors_pick.imageset/img_editors_pick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_editors_pick.imageset/img_editors_pick.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_logo_fodamy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_logo_fodamy.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_logo_fodamy.imageset/img_logo_fodamy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_logo_fodamy.imageset/img_logo_fodamy.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_1.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_1.imageset/img_walkthrough_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_1.imageset/img_walkthrough_1.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_2.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_2.imageset/img_walkthrough_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_2.imageset/img_walkthrough_2.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_3.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_3.imageset/img_walkthrough_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_3.imageset/img_walkthrough_3.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_4.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_4.imageset/img_walkthrough_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/Images.xcassets/img_walkthrough_4.imageset/img_walkthrough_4.pdf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/UIColor+Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/UIColor+Colors.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/UIImage+Icons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/UIImage+Icons.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Assets/UIImage+Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Assets/UIImage+Images.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Fonts/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Fonts/Fonts.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Fonts/Nunito-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Fonts/Nunito-ExtraBold.ttf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Fonts/Nunito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Fonts/Nunito-SemiBold.ttf -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Fonts/UIFont+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Fonts/UIFont+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Strings/Componenets.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Strings/Componenets.strings -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Strings/Error.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Strings/Error.strings -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Strings/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Strings/General.strings -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Strings/Modules.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Strings/Modules.strings -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Strings/Placeholder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Strings/Placeholder.strings -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Resources/Strings/StringConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Resources/Strings/StringConstants.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Toast/ToastPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Toast/ToastPresenter.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/Toast/TostWarningView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/Toast/TostWarningView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIActivityIndicatorView/ActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIActivityIndicatorView/ActivityIndicatorView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UICollectionView/DynamicHeightCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UICollectionView/DynamicHeightCollectionView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIComponents.h -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UILabel/PaddingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UILabel/PaddingLabel.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIPageControl/PageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIPageControl/PageControl.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UITextField/FloatLabelTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UITextField/FloatLabelTextField.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIView/CommentInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIView/CommentInputView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIView/CountInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIView/CountInfoView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIView/RecipeDetailInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIView/RecipeDetailInfoView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIView/RecipeDetailTitlesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIView/RecipeDetailTitlesView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIView/RecipeSmallCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIView/RecipeSmallCellView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponents/UIView/UserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponents/UIView/UserView.swift -------------------------------------------------------------------------------- /SampleProject/UIComponents/UIComponentsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/UIComponentsTests/Info.plist -------------------------------------------------------------------------------- /SampleProject/UIComponents/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/UIComponents/swiftgen.yml -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Constants/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Constants/Closures.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Constants/DefaultsKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Constants/DefaultsKeys.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Constants/Keychain+Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Constants/Keychain+Constants.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Extensions/Int+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Extensions/Int+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Extensions/UITextField+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Extensions/UITextField+Extensions.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Helper/KeyboardHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Helper/KeyboardHelper.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Info.plist -------------------------------------------------------------------------------- /SampleProject/Utilities/Utilities/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/Utilities/Utilities.h -------------------------------------------------------------------------------- /SampleProject/Utilities/UtilitiesTests/ExtensionsTests/Int+ExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/UtilitiesTests/ExtensionsTests/Int+ExtensionsTests.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/UtilitiesTests/ExtensionsTests/String+ExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/UtilitiesTests/ExtensionsTests/String+ExtensionsTests.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/UtilitiesTests/ExtensionsTests/UITextField+ExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/UtilitiesTests/ExtensionsTests/UITextField+ExtensionsTests.swift -------------------------------------------------------------------------------- /SampleProject/Utilities/UtilitiesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/UtilitiesTests/Info.plist -------------------------------------------------------------------------------- /SampleProject/Utilities/UtilitiesTests/UtilitiesTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProject/Utilities/UtilitiesTests/UtilitiesTests-Bridging-Header.h -------------------------------------------------------------------------------- /SampleProjectSwiftUI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/.gitignore -------------------------------------------------------------------------------- /SampleProjectSwiftUI/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/.swiftlint.yml -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/.gitignore -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/.swiftpm/xcode/xcshareddata/xcschemes/Components.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/.swiftpm/xcode/xcshareddata/xcschemes/Components.xcscheme -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Package.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Button/PrimaryLargeButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Button/PrimaryLargeButton.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Entity/DeviceName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Entity/DeviceName.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Extensions/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Extensions/Color+Extensions.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Extensions/EnvironmentValues+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Extensions/EnvironmentValues+Extensions.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Extensions/Int+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Extensions/Int+Extensions.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Extensions/UIEdgeInsets+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Extensions/UIEdgeInsets+Extensions.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/HorizontalRecipesHeaderView/HorizontalRecipesHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/HorizontalRecipesHeaderView/HorizontalRecipesHeaderView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/HorizontalRecipesHeaderView/HorizontalRecipesHeaderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/HorizontalRecipesHeaderView/HorizontalRecipesHeaderViewModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/HorizontalRecipesView/HorizontalRecipesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/HorizontalRecipesView/HorizontalRecipesView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/HorizontalRecipesView/HorizontalRecipesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/HorizontalRecipesView/HorizontalRecipesViewModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Loading/FullScreenLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Loading/FullScreenLoadingView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Modifier/CornerRadiusStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Modifier/CornerRadiusStyle.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Onboarding/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Onboarding/OnboardingView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Onboarding/OnboardingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Onboarding/OnboardingViewModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/PageControl/PageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/PageControl/PageControl.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Recipe/HorizontalRecipeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Recipe/HorizontalRecipeView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Recipe/RecipeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Recipe/RecipeView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Recipe/RecipeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Recipe/RecipeViewModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Assets.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/Background/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/Background/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/Background/appPrimaryBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/Background/appPrimaryBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/Background/appSecondaryBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/Background/appSecondaryBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appCinder.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appCinder.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appHeather.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appHeather.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appRaven.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appRaven.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appRed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appRed.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appSeparator.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appSeparator.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appShadow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appShadow.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appWhite.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appWhite.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appYellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appYellow.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appZircon.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Colors.xcassets/appZircon.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_back.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_back.imageset/ic_back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_back.imageset/ic_back.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_clock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_clock.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_clock.imageset/ic_clock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_clock.imageset/ic_clock.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_close.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_close.imageset/ic_close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_close.imageset/ic_close.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_comment.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_comment.imageset/ic_comment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_comment.imageset/ic_comment.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_heart.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_heart.imageset/ic_heart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_heart.imageset/ic_heart.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_home.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_home.imageset/ic_home.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_home.imageset/ic_home.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_logout.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_logout.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_logout.imageset/ic_logout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_logout.imageset/ic_logout.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_mail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_mail.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_mail.imageset/ic_mail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_mail.imageset/ic_mail.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_menu.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_menu.imageset/ic_menu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_menu.imageset/ic_menu.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_more.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_more.imageset/ic_more.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_more.imageset/ic_more.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_password.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_password.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_password.imageset/ic_password.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_password.imageset/ic_password.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_restaurant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_restaurant.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_restaurant.imageset/ic_restaurant.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_restaurant.imageset/ic_restaurant.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_send.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_send.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_send.imageset/ic_send.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_send.imageset/ic_send.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_share.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_share.imageset/ic_share.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_share.imageset/ic_share.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_user.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_user.imageset/ic_user.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_user.imageset/ic_user.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_users.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_users.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_users.imageset/ic_users.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_users.imageset/ic_users.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_warning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_warning.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_warning.imageset/ic_warning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Icons.xcassets/ic_warning.imageset/ic_warning.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_editors_pick.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_editors_pick.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_editors_pick.imageset/img_editors_pick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_editors_pick.imageset/img_editors_pick.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_logo_fodamy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_logo_fodamy.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_logo_fodamy.imageset/img_logo_fodamy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_logo_fodamy.imageset/img_logo_fodamy.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_1.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_1.imageset/img_walkthrough_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_1.imageset/img_walkthrough_1.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_2.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_2.imageset/img_walkthrough_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_2.imageset/img_walkthrough_2.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_3.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_3.imageset/img_walkthrough_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_3.imageset/img_walkthrough_3.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_4.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_4.imageset/img_walkthrough_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/Images.xcassets/img_walkthrough_4.imageset/img_walkthrough_4.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/UIColor+Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/UIColor+Colors.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/UIImage+Icons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/UIImage+Icons.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/UIImage+Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Assets/UIImage+Images.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Font+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Font+Extensions.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Fonts.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Nunito-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Nunito-ExtraBold.ttf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Nunito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Fonts/Nunito-SemiBold.ttf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/Componenets.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/Componenets.strings -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/Error.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/Error.strings -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/General.strings -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/Modules.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/Modules.strings -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/Placeholder.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/Placeholder.strings -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/StringConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/Resources/Strings/StringConstants.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/User/UserInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/User/UserInfoView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/User/UserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/User/UserView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/User/UserViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/User/UserViewModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Sources/Components/View/AppSegmentView/AppSegmentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Sources/Components/View/AppSegmentView/AppSegmentView.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Components/Tests/ComponentsTests/ComponentsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Components/Tests/ComponentsTests/ComponentsTests.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/.gitignore -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/.swiftpm/xcode/xcshareddata/xcschemes/DataProvider.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/.swiftpm/xcode/xcshareddata/xcschemes/DataProvider.xcscheme -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Package.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APIDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APIDataProvider.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APIDecodableResponseRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APIDecodableResponseRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APILogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APILogger.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APIRequestAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APIRequestAdapter.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APIRequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/FodamyDataProvider/APIRequestInterceptor.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/Auth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/Auth.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/BaseResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/BaseResponse.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/CategoryDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/CategoryDetail.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/Image.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/MainCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/MainCategory.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/NumberOfPerson.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/NumberOfPerson.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/Pagination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/Pagination.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/Recipe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/Recipe.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/RecipeComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/RecipeComment.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/RecipeDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/RecipeDetail.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/RecipeListType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/RecipeListType.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/RecipeTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/RecipeTime.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/SuccessResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/SuccessResponse.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Model/User.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/AuthRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/AuthRepository.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/BaseRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/BaseRepository.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/RecipeCommentRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/RecipeCommentRepository.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/RecipeLikeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/RecipeLikeRepository.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/RecipeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Repository/RecipeRepository.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Auth/ForgotPasswordRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Auth/ForgotPasswordRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Auth/LoginRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Auth/LoginRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Auth/LogoutRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Auth/LogoutRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Auth/RegisterRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Auth/RegisterRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Comment/AddRecipeCommentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Comment/AddRecipeCommentRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Comment/DeleteRecipeCommentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Comment/DeleteRecipeCommentRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Comment/EditRecipeCommentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Comment/EditRecipeCommentRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Comment/GetRecipeCommentsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Comment/GetRecipeCommentsRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/GetCategoriesWithRecipesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/GetCategoriesWithRecipesRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/GetRecipeDetailRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/GetRecipeDetailRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/GetRecipesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/GetRecipesRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Like/AddRecipeLikeRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Like/AddRecipeLikeRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Like/DeleteRecipeLikeRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/Recipe/Like/DeleteRecipeLikeRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/User/Follow/AddUserFollowRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/User/Follow/AddUserFollowRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/User/Follow/DeleteUserFollowRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Sources/DataProvider/Requests/User/Follow/DeleteUserFollowRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/DataProvider/Tests/DataProviderTests/DataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/DataProvider/Tests/DataProviderTests/DataProviderTests.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/.gitignore -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/.swiftpm/xcode/xcshareddata/xcschemes/Network-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/.swiftpm/xcode/xcshareddata/xcschemes/Network-Package.xcscheme -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/.swiftpm/xcode/xcshareddata/xcschemes/Network.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/.swiftpm/xcode/xcshareddata/xcschemes/Network.xcscheme -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/Package.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/Sources/Network/Core/DataProviderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/Sources/Network/Core/DataProviderProtocol.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/Sources/Network/Core/DecodableResponseRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/Sources/Network/Core/DecodableResponseRequest.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/Sources/Network/Core/RequestEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/Sources/Network/Core/RequestEncoding.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/Sources/Network/Core/RequestMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/Sources/Network/Core/RequestMethod.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/Sources/Network/Core/RequestProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/Sources/Network/Core/RequestProtocol.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/Sources/Network/Core/Typealias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/Sources/Network/Core/Typealias.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Network/Tests/NetworkTests/NetworkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Network/Tests/NetworkTests/NetworkTests.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Utilities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Utilities/.gitignore -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Utilities/.swiftpm/xcode/xcshareddata/xcschemes/Utilities.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Utilities/.swiftpm/xcode/xcshareddata/xcschemes/Utilities.xcscheme -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Utilities/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Utilities/Package.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Utilities/Sources/Utilities/Constants/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Utilities/Sources/Utilities/Constants/Closures.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Core/Utilities/Tests/UtilitiesTests/UtilitiesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Core/Utilities/Tests/UtilitiesTests/UtilitiesTests.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Packages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Packages/.gitignore -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Packages/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Packages/Package.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Packages/README.md -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Packages/Sources/SampleProjectSwiftUIPackages/SampleProjectSwiftUIPackages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Packages/Sources/SampleProjectSwiftUIPackages/SampleProjectSwiftUIPackages.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Packages/Sources/UIComponentsPackages/UIComponentsPackages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Packages/Sources/UIComponentsPackages/UIComponentsPackages.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Packages/Tests/PackagesTests/PackagesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Packages/Tests/PackagesTests/PackagesTests.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI.xcodeproj/project.xcworkspace/xcuserdata/mehmetsalihaslan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI.xcodeproj/project.xcworkspace/xcuserdata/mehmetsalihaslan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/App/SampleProjectSwiftUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/App/SampleProjectSwiftUIApp.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/fodamy-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/fodamy-logo.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/fodamy-logo.imageset/fodamy-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/fodamy-logo.imageset/fodamy-logo.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/ic_heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/ic_heart.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/ic_heart.imageset/ic_heart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/ic_heart.imageset/ic_heart.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/ic_home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/ic_home.imageset/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/ic_home.imageset/ic_home.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Assets.xcassets/ic_home.imageset/ic_home.pdf -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Constants/DefaultKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Constants/DefaultKeys.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/DataProvider/DataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/DataProvider/DataProvider.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Info.plist -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Router/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Router/Router.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Base/BaseScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Base/BaseScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Base/BaseSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Base/BaseSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Favorites/FavoritesScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Favorites/FavoritesScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Favorites/FavoritesSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Favorites/FavoritesSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Home/HomeScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Home/HomeScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Home/HomeSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Home/HomeSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Launch/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Launch/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/MainTabScene/MainTabScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/MainTabScene/MainTabScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/MainTabScene/MainTabSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/MainTabScene/MainTabSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Onboarding/OnboardingScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Onboarding/OnboardingScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Onboarding/OnboardingSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Onboarding/OnboardingSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/RecipeDetail/RecipeDetailScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/RecipeDetail/RecipeDetailScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/RecipeDetail/RecipeDetailSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/RecipeDetail/RecipeDetailSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Recipes/RecipesScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Recipes/RecipesScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Recipes/RecipesSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Recipes/RecipesSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Root/RootScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Root/RootScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Root/RootSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Root/RootSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Splash/SplashScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Splash/SplashScene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Splash/SplashSceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/Scene/Splash/SplashSceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/UIComponents/RecipeViewModel+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/UIComponents/RecipeViewModel+Extensions.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUI/UIComponents/UserViewModel+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUI/UIComponents/UserViewModel+Extensions.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUITests/SampleProjectSwiftUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUITests/SampleProjectSwiftUITests.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUIUITests/SampleProjectSwiftUIUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUIUITests/SampleProjectSwiftUIUITests.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SampleProjectSwiftUIUITests/SampleProjectSwiftUIUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SampleProjectSwiftUIUITests/SampleProjectSwiftUIUITestsLaunchTests.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SwiftGenTemplates/Icons.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SwiftGenTemplates/Icons.stencil -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SwiftGenTemplates/colors.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SwiftGenTemplates/colors.stencil -------------------------------------------------------------------------------- /SampleProjectSwiftUI/SwiftGenTemplates/images.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/SwiftGenTemplates/images.stencil -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/Default/___FILEBASENAME___Scene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/Default/___FILEBASENAME___Scene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/Default/___FILEBASENAME___SceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/Default/___FILEBASENAME___SceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/WithBaseView/___FILEBASENAME___Scene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/WithBaseView/___FILEBASENAME___Scene.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/WithBaseView/___FILEBASENAME___SceneModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI Scene.xctemplate/WithBaseView/___FILEBASENAME___SceneModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/Default/___FILEBASENAME___View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/Default/___FILEBASENAME___View.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/Default/___FILEBASENAME___ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/Default/___FILEBASENAME___ViewModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/Identifiable/___FILEBASENAME___View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/Identifiable/___FILEBASENAME___View.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/Identifiable/___FILEBASENAME___ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/Identifiable/___FILEBASENAME___ViewModel.swift -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/Source/SwiftUI Templates/SwiftUI View.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/install-templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/install-templates -------------------------------------------------------------------------------- /SampleProjectSwiftUI/Xcode Templates/install-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/SampleProjectSwiftUI/Xcode Templates/install-templates.md -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/Default/___FILEBASENAME___Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/Default/___FILEBASENAME___Cell.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/Default/___FILEBASENAME___CellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/Default/___FILEBASENAME___CellModel.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/Public/___FILEBASENAME___Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/Public/___FILEBASENAME___Cell.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/Public/___FILEBASENAME___CellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/Public/___FILEBASENAME___CellModel.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CollectionViewCell.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/Default/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/Default/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/Default/___FILEBASENAME___Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/Default/___FILEBASENAME___Model.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/Public/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/Public/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/Public/___FILEBASENAME___Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/Public/___FILEBASENAME___Model.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView+Model.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView.xctemplate/Default/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView.xctemplate/Default/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView.xctemplate/Public/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView.xctemplate/Public/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/CustomView.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/CustomView.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Modal Route.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Modal Route.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Modal Route.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Modal Route.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Modal Route.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Modal Route.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Modal Route.xctemplate/___FILEBASENAME___Route.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Modal Route.xctemplate/___FILEBASENAME___Route.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Push Route.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Push Route.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Push Route.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Push Route.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Push Route.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Push Route.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Push Route.xctemplate/___FILEBASENAME___Route.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Push Route.xctemplate/___FILEBASENAME___Route.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/CollectionViewDelegate/___FILEBASENAME___Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/CollectionViewDelegate/___FILEBASENAME___Router.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/CollectionViewDelegate/___FILEBASENAME___ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/CollectionViewDelegate/___FILEBASENAME___ViewController.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/CollectionViewDelegate/___FILEBASENAME___ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/CollectionViewDelegate/___FILEBASENAME___ViewModel.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/Default/___FILEBASENAME___Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/Default/___FILEBASENAME___Router.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/Default/___FILEBASENAME___ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/Default/___FILEBASENAME___ViewController.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/Default/___FILEBASENAME___ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/Default/___FILEBASENAME___ViewModel.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TableViewDelegate/___FILEBASENAME___Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TableViewDelegate/___FILEBASENAME___Router.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TableViewDelegate/___FILEBASENAME___ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TableViewDelegate/___FILEBASENAME___ViewController.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TableViewDelegate/___FILEBASENAME___ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TableViewDelegate/___FILEBASENAME___ViewModel.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/MVVM-R Scene.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/Request.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/Request.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/Request.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/Request.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/Request.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/Request.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/Request.xctemplate/___FILEBASENAME___Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/Request.xctemplate/___FILEBASENAME___Request.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/TableViewCell.xctemplate/Default/___FILEBASENAME___Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/TableViewCell.xctemplate/Default/___FILEBASENAME___Cell.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/TableViewCell.xctemplate/Default/___FILEBASENAME___CellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/TableViewCell.xctemplate/Default/___FILEBASENAME___CellModel.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/TableViewCell.xctemplate/Public/___FILEBASENAME___Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/TableViewCell.xctemplate/Public/___FILEBASENAME___Cell.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/TableViewCell.xctemplate/Public/___FILEBASENAME___CellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/TableViewCell.xctemplate/Public/___FILEBASENAME___CellModel.swift -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/TableViewCell.xctemplate/TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/TableViewCell.xctemplate/TemplateIcon.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/TableViewCell.xctemplate/TemplateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/TableViewCell.xctemplate/TemplateIcon@2x.png -------------------------------------------------------------------------------- /Templates/Source/Mobillium Templates/TableViewCell.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/Source/Mobillium Templates/TableViewCell.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Templates/install-templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/install-templates -------------------------------------------------------------------------------- /Templates/install-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/Templates/install-templates.md -------------------------------------------------------------------------------- /project-folder-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/project-folder-structure.md -------------------------------------------------------------------------------- /resources-guideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/resources-guideline.md -------------------------------------------------------------------------------- /swift-guideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobillium/iOS-Guidelines/HEAD/swift-guideline.md --------------------------------------------------------------------------------