├── .gitignore ├── MVVM Project Template.xctemplate ├── .DS_Store ├── AppContainer.swift ├── AppDelegate.swift ├── AppRouter.swift ├── AppWindow.swift ├── Controllers │ ├── Auth │ │ ├── EULAController.swift │ │ ├── LoginController.swift │ │ └── SignUpController.swift │ ├── Base │ │ ├── CollectionController.swift │ │ ├── Controller.swift │ │ ├── NavigationController.swift │ │ ├── TabBarController.swift │ │ └── ViewModelController.swift │ ├── DispatchController.swift │ └── Profile │ │ └── EditProfileController.swift ├── Controls │ ├── ActivitySpinnerIndicator.swift │ ├── Button.swift │ ├── Checkbox.swift │ ├── ControlElement.swift │ ├── RatingSlider.swift │ ├── Slider.swift │ └── Switch.swift ├── Extensions │ ├── CALayer.swift │ ├── CustomStringConvertible+Extensions.swift │ ├── Date+Extensions.swift │ ├── Enum+Extensions.swift │ ├── IGListKit+Extenions.swift │ ├── NSAttributedString+Extensions.swift │ ├── NSLayoutConstraint+Extensions.swift │ ├── Number+Extensions.swift │ ├── RxSwift+Extensions.swift │ ├── String+Extensions.swift │ ├── UIAlertController+Extensions.swift │ ├── UIApplication+Extensions.swift │ ├── UIButton+Extensions.swift │ ├── UICollectionView+Extensions.swift │ ├── UIColor+Extensions.swift │ ├── UIDevice+Extensions.swift │ ├── UIEdgeInsets+Extensions.swift │ ├── UIImage+Extensions.swift │ ├── UILabel+Extensions.swift │ ├── UIScrollView+Extensions.swift │ ├── UITableView+Extensions.swift │ ├── UIView+Extensions.swift │ ├── UIViewController+Extensions.swift │ └── UIWindow+Extensions.swift ├── Info.plist ├── Interfaces │ ├── Interface+Defaults.swift │ └── Interfaces.swift ├── Managers │ ├── Manager.swift │ └── ThemeManager.swift ├── Models │ ├── .DS_Store │ ├── Enums │ │ └── LocalizationIdentifier.swift │ ├── Errors │ │ └── JSONError.swift │ └── Model.swift ├── Networking │ └── HttpRequest.swift ├── Podfile ├── Protocols │ ├── Accessible.swift │ ├── FeedbackGeneratable.swift │ ├── Reflectable.swift │ └── Roundable.swift ├── RootViews │ ├── Auth │ │ ├── EULAView.swift │ │ ├── LoginView.swift │ │ └── SignUpView.swift │ ├── LoadingView.swift │ └── Profile │ │ └── EditProfileView.swift ├── Routing │ ├── AuthCoordinator.swift │ ├── Coordinator+Coordinatable.swift │ ├── NavigationRouter.swift │ └── Route.swift ├── Services │ ├── LogService.swift │ ├── NetworkService.swift │ └── Service.swift ├── Supporting Files │ ├── .DS_Store │ ├── EndUserLicenseAgreement.html │ ├── Localizable.strings │ └── NSConstraintLayoutSet.swift ├── TemplateInfo.plist ├── Theme │ ├── Extensions+Theme.swift │ ├── Style.swift │ ├── Stylesheet.swift │ └── Theme.swift ├── Transitions │ ├── ControllerInteractor.swift │ ├── ControllerTransitionAnimator.swift │ ├── NavigationControllerInteractor.swift │ ├── NavigationControllerTransitionAnimator.swift │ └── TabBarControllerTransitionAnimator.swift ├── ViewModels │ ├── AuthViewModel.swift │ ├── Base │ │ ├── AppViewModel.swift │ │ ├── ListViewModel.swift │ │ └── ViewModel.swift │ ├── EULAViewModel.swift │ └── EditProfileViewModel.swift └── Views │ ├── .DS_Store │ ├── AvatarView.swift │ ├── Cells │ ├── CollectionReusableView.swift │ ├── CollectionViewCell.swift │ ├── FormCells.swift │ └── TableViewCell.swift │ ├── CollectionView.swift │ ├── GaugeView.swift │ ├── GradientView.swift │ ├── ImageView.swift │ ├── InputViews │ ├── AnimatedTextField.swift │ ├── InputTextView.swift │ ├── SearchBar.swift │ └── TextField.swift │ ├── Items │ └── BadgeBarButtonItem.swift │ ├── Layers │ ├── Chevron.swift │ └── Star.swift │ ├── Layout Containers │ ├── GridView.swift │ ├── RowView.swift │ ├── SectionFooterView.swift │ └── SectionHeaderView.swift │ ├── ListView.swift │ ├── NavigationBars │ └── NavigationBar.swift │ ├── RoundedView.swift │ ├── ScrollStackView.swift │ ├── TableView.swift │ ├── View.swift │ └── Wrapper Containers │ ├── AccessoryViewWrapped.swift │ ├── ScrollViewWrapped.swift │ └── ViewWrapped.swift ├── Playground.playground ├── Contents.swift ├── contents.xcplayground ├── playground.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── nathantannar.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── timeline.xctimeline ├── Podfile ├── README.md ├── TemplateProject.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── nathantannar.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── nathantannar.xcuserdatad │ └── xcschemes │ ├── MVVM-Template.xcscheme │ └── xcschememanagement.plist ├── TemplateProject.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── nathantannar.xcuserdatad │ ├── IDEFindNavigatorScopes.plist │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── TemplateProjectFiles ├── .DS_Store ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard └── DevVC.swift └── XCodeTemplateGenerator.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/.DS_Store -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/AppContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/AppContainer.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/AppDelegate.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/AppRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/AppRouter.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/AppWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/AppWindow.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Auth/EULAController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Auth/EULAController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Auth/LoginController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Auth/LoginController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Auth/SignUpController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Auth/SignUpController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Base/CollectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Base/CollectionController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Base/Controller.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Base/Controller.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Base/NavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Base/NavigationController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Base/TabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Base/TabBarController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Base/ViewModelController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Base/ViewModelController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/DispatchController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/DispatchController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controllers/Profile/EditProfileController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controllers/Profile/EditProfileController.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controls/ActivitySpinnerIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controls/ActivitySpinnerIndicator.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controls/Button.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controls/Button.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controls/Checkbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controls/Checkbox.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controls/ControlElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controls/ControlElement.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controls/RatingSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controls/RatingSlider.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controls/Slider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controls/Slider.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Controls/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Controls/Switch.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/CALayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/CALayer.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/CustomStringConvertible+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/CustomStringConvertible+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/Date+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/Date+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/Enum+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/Enum+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/IGListKit+Extenions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/IGListKit+Extenions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/NSAttributedString+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/NSAttributedString+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/NSLayoutConstraint+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/NSLayoutConstraint+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/Number+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/Number+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/RxSwift+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/RxSwift+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIAlertController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIAlertController+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIApplication+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIApplication+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIButton+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIButton+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UICollectionView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UICollectionView+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIColor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIColor+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIDevice+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIDevice+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIEdgeInsets+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIEdgeInsets+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIImage+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UILabel+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UILabel+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIScrollView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIScrollView+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UITableView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UITableView+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIView+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIViewController+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Extensions/UIWindow+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Extensions/UIWindow+Extensions.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Info.plist -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Interfaces/Interface+Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Interfaces/Interface+Defaults.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Interfaces/Interfaces.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Interfaces/Interfaces.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Managers/Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Managers/Manager.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Managers/ThemeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Managers/ThemeManager.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Models/.DS_Store -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Models/Enums/LocalizationIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Models/Enums/LocalizationIdentifier.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Models/Errors/JSONError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Models/Errors/JSONError.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Models/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Models/Model.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Networking/HttpRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Networking/HttpRequest.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Podfile -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Protocols/Accessible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Protocols/Accessible.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Protocols/FeedbackGeneratable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Protocols/FeedbackGeneratable.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Protocols/Reflectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Protocols/Reflectable.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Protocols/Roundable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Protocols/Roundable.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/RootViews/Auth/EULAView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/RootViews/Auth/EULAView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/RootViews/Auth/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/RootViews/Auth/LoginView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/RootViews/Auth/SignUpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/RootViews/Auth/SignUpView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/RootViews/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/RootViews/LoadingView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/RootViews/Profile/EditProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/RootViews/Profile/EditProfileView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Routing/AuthCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Routing/AuthCoordinator.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Routing/Coordinator+Coordinatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Routing/Coordinator+Coordinatable.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Routing/NavigationRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Routing/NavigationRouter.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Routing/Route.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Routing/Route.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Services/LogService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Services/LogService.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Services/NetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Services/NetworkService.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Services/Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Services/Service.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Supporting Files/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Supporting Files/.DS_Store -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Supporting Files/EndUserLicenseAgreement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Supporting Files/EndUserLicenseAgreement.html -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Supporting Files/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Supporting Files/Localizable.strings -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Supporting Files/NSConstraintLayoutSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Supporting Files/NSConstraintLayoutSet.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Theme/Extensions+Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Theme/Extensions+Theme.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Theme/Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Theme/Style.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Theme/Stylesheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Theme/Stylesheet.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Theme/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Theme/Theme.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Transitions/ControllerInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Transitions/ControllerInteractor.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Transitions/ControllerTransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Transitions/ControllerTransitionAnimator.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Transitions/NavigationControllerInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Transitions/NavigationControllerInteractor.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Transitions/NavigationControllerTransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Transitions/NavigationControllerTransitionAnimator.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Transitions/TabBarControllerTransitionAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Transitions/TabBarControllerTransitionAnimator.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/ViewModels/AuthViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/ViewModels/AuthViewModel.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/ViewModels/Base/AppViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/ViewModels/Base/AppViewModel.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/ViewModels/Base/ListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/ViewModels/Base/ListViewModel.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/ViewModels/Base/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/ViewModels/Base/ViewModel.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/ViewModels/EULAViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/ViewModels/EULAViewModel.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/ViewModels/EditProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/ViewModels/EditProfileViewModel.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/.DS_Store -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/AvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/AvatarView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Cells/CollectionReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Cells/CollectionReusableView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Cells/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Cells/CollectionViewCell.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Cells/FormCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Cells/FormCells.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Cells/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Cells/TableViewCell.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/CollectionView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/GaugeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/GaugeView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/GradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/GradientView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/ImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/ImageView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/InputViews/AnimatedTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/InputViews/AnimatedTextField.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/InputViews/InputTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/InputViews/InputTextView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/InputViews/SearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/InputViews/SearchBar.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/InputViews/TextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/InputViews/TextField.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Items/BadgeBarButtonItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Items/BadgeBarButtonItem.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Layers/Chevron.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Layers/Chevron.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Layers/Star.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Layers/Star.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Layout Containers/GridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Layout Containers/GridView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Layout Containers/RowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Layout Containers/RowView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Layout Containers/SectionFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Layout Containers/SectionFooterView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Layout Containers/SectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Layout Containers/SectionHeaderView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/ListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/ListView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/NavigationBars/NavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/NavigationBars/NavigationBar.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/RoundedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/RoundedView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/ScrollStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/ScrollStackView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/TableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/TableView.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/View.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Wrapper Containers/AccessoryViewWrapped.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Wrapper Containers/AccessoryViewWrapped.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Wrapper Containers/ScrollViewWrapped.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Wrapper Containers/ScrollViewWrapped.swift -------------------------------------------------------------------------------- /MVVM Project Template.xctemplate/Views/Wrapper Containers/ViewWrapped.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/MVVM Project Template.xctemplate/Views/Wrapper Containers/ViewWrapped.swift -------------------------------------------------------------------------------- /Playground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/Playground.playground/Contents.swift -------------------------------------------------------------------------------- /Playground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/Playground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playground.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/Playground.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Playground.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/Playground.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Playground.playground/playground.xcworkspace/xcuserdata/nathantannar.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/Playground.playground/playground.xcworkspace/xcuserdata/nathantannar.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Playground.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/Playground.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/README.md -------------------------------------------------------------------------------- /TemplateProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TemplateProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TemplateProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TemplateProject.xcodeproj/project.xcworkspace/xcuserdata/nathantannar.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcodeproj/project.xcworkspace/xcuserdata/nathantannar.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TemplateProject.xcodeproj/xcuserdata/nathantannar.xcuserdatad/xcschemes/MVVM-Template.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcodeproj/xcuserdata/nathantannar.xcuserdatad/xcschemes/MVVM-Template.xcscheme -------------------------------------------------------------------------------- /TemplateProject.xcodeproj/xcuserdata/nathantannar.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcodeproj/xcuserdata/nathantannar.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TemplateProject.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TemplateProject.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TemplateProject.xcworkspace/xcuserdata/nathantannar.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcworkspace/xcuserdata/nathantannar.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /TemplateProject.xcworkspace/xcuserdata/nathantannar.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcworkspace/xcuserdata/nathantannar.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TemplateProject.xcworkspace/xcuserdata/nathantannar.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProject.xcworkspace/xcuserdata/nathantannar.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TemplateProjectFiles/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProjectFiles/.DS_Store -------------------------------------------------------------------------------- /TemplateProjectFiles/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProjectFiles/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TemplateProjectFiles/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProjectFiles/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TemplateProjectFiles/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProjectFiles/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TemplateProjectFiles/DevVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/TemplateProjectFiles/DevVC.swift -------------------------------------------------------------------------------- /XCodeTemplateGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathantannar4/MVVM-ViewInjection-Template/HEAD/XCodeTemplateGenerator.swift --------------------------------------------------------------------------------