├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── contributors.yml ├── .gitignore ├── Assets ├── AlertView.png ├── CanvasView.png ├── DatePickerView.png ├── HStackView.png ├── ImageView.png ├── NavigationStackView.png ├── ProgressView.png ├── SectionView.png ├── StepperView.png └── SwiftCamp.png ├── LICENSE ├── README.md ├── SwiftBasics ├── BasicOperators.swift ├── Closures.swift ├── CollectionTypes.swift ├── ControlFlow.swift ├── Deinitialization.swift ├── Enumerations.swift ├── ErrorHandling.swift ├── Functions.swift ├── Inheritance.swift ├── Initialization.swift ├── Methods.swift ├── NestedTypes.swift ├── Properties.swift ├── Protocols.swift ├── StringsAndCharacters.swift ├── StructuresAndClasses.swift ├── Subscripts.swift ├── Swift Basics Checklist.md ├── TheBasics.swift └── TypeCasting.swift ├── SwiftUI ├── Swift UI Components Checklist.md ├── Swift-Camp-Devs │ ├── OneSignalNotificationServiceExtension │ │ ├── Info.plist │ │ ├── InfoPlist.xcstrings │ │ ├── NotificationService.swift │ │ └── OneSignalNotificationServiceExtension.entitlements │ ├── SwiftCampDevs.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── OneSignalNotificationServiceExtension.xcscheme │ │ │ └── SwiftCampDevs.xcscheme │ ├── SwiftCampDevs │ │ ├── .swiftlint.yml │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── Authentication │ │ │ │ ├── Contents.json │ │ │ │ ├── ForgotPassword.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ForgotPassword.png │ │ │ │ ├── SignupOne.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── SignupOne.png │ │ │ │ └── TwoFA.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── TwoFA.png │ │ │ ├── Colors │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Black.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Blue.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── DarkGray.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── LightGray.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PowderBlue.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SoftGray.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SuccessColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── WarningColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── White.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Data & Storage │ │ │ │ ├── Contents.json │ │ │ │ └── StorageAndData.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── StorageAndData.png │ │ │ ├── Logos │ │ │ │ ├── Contents.json │ │ │ │ ├── facebookLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── facebookLogo 1.png │ │ │ │ │ ├── facebookLogo 2.png │ │ │ │ │ └── facebookLogo.png │ │ │ │ ├── githubLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── githubLogo 1.png │ │ │ │ │ ├── githubLogo 2.png │ │ │ │ │ └── githubLogo.png │ │ │ │ └── googleLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── googleLogo 1.png │ │ │ │ │ ├── googleLogo 2.png │ │ │ │ │ └── googleLogo.png │ │ │ ├── Onboarding │ │ │ │ ├── Contents.json │ │ │ │ ├── OnboardingOne.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── onboarding1.png │ │ │ │ ├── OnboardingThree.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Onboarding3.png │ │ │ │ ├── OnboardingTwo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── onboarding2.png │ │ │ │ └── Opening.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Opening.png │ │ │ └── User Management │ │ │ │ ├── ContactUs.imageset │ │ │ │ ├── ContactUs.png │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Security.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Security.png │ │ │ │ ├── SendFeedback.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SendFeedback.png │ │ │ │ └── UserActivityHistory.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── UserActivityHistory.png │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Components │ │ │ ├── BottomSheet │ │ │ │ ├── BottomSheetComponent.swift │ │ │ │ └── BottomSheetEnum.swift │ │ │ ├── Button │ │ │ │ ├── ButtonComponent.swift │ │ │ │ └── ButtonEnum.swift │ │ │ ├── CheckBox │ │ │ │ ├── CheckBoxComponent.swift │ │ │ │ └── CheckBoxEnum.swift │ │ │ ├── CountryPicker │ │ │ │ ├── CountryModel.swift │ │ │ │ ├── CountryPickerComponent.swift │ │ │ │ ├── CountryPickerEnum.swift │ │ │ │ └── CountryService.swift │ │ │ ├── Icon │ │ │ │ ├── IconComponent.swift │ │ │ │ └── IconEnum.swift │ │ │ ├── OTPInputField │ │ │ │ └── OTPInputFieldView.swift │ │ │ ├── Popup │ │ │ │ ├── PopupComponent.swift │ │ │ │ └── PopupEnum.swift │ │ │ ├── SearchBar │ │ │ │ ├── SearchBarComponent.swift │ │ │ │ └── SearchBarEnum.swift │ │ │ ├── Text │ │ │ │ ├── TextComponent.swift │ │ │ │ └── TextEnum.swift │ │ │ ├── TextField │ │ │ │ ├── TextFieldComponent.swift │ │ │ │ └── TextFieldEnum.swift │ │ │ └── Toggle │ │ │ │ ├── ToggleComponent.swift │ │ │ │ └── ToggleEnum.swift │ │ ├── CustomTheme.json │ │ ├── EnvironmentConfig.plist │ │ ├── GoogleService-Info.plist │ │ ├── Helpers │ │ │ ├── BatteryHelper.swift │ │ │ ├── DeepLinkHelper.swift │ │ │ ├── EnvironmentHelper.swift │ │ │ ├── FirebaseHelper.swift │ │ │ ├── KeychainHelper.swift │ │ │ ├── LocalStorageHelper.swift │ │ │ ├── LoggerHelper.swift │ │ │ ├── MetaFacebookEventHelper.swift │ │ │ ├── MixpanelHelper.swift │ │ │ ├── NetworkHelper.swift │ │ │ ├── PermissionHelper.swift │ │ │ ├── SettingsHelper.swift │ │ │ ├── SnackbarHelper.swift │ │ │ ├── SocialSignInHelper.swift │ │ │ ├── StringHelper.swift │ │ │ ├── ThemeHelper.swift │ │ │ ├── TimeHelper.swift │ │ │ ├── ToastHelper.swift │ │ │ ├── UISizerHelper.swift │ │ │ ├── UniversalLinkHelper.swift │ │ │ ├── ValidatorHelper.swift │ │ │ └── WorkManagerHelper.swift │ │ ├── Info.plist │ │ ├── Initializers │ │ │ ├── InitialWireframeInitializer.swift │ │ │ ├── Initializable.swift │ │ │ └── StartupInitializationBuilder.swift │ │ ├── Languages │ │ │ ├── ar-AE.lproj │ │ │ │ └── LaunchScreen.strings │ │ │ ├── es.lproj │ │ │ │ └── LaunchScreen.strings │ │ │ ├── he.lproj │ │ │ │ └── LaunchScreen.strings │ │ │ ├── tr.lproj │ │ │ │ └── LaunchScreen.strings │ │ │ ├── ur-IN.lproj │ │ │ │ └── LaunchScreen.strings │ │ │ ├── ur-PK.lproj │ │ │ │ └── LaunchScreen.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── LaunchScreen.strings │ │ ├── Localizable.xcstrings │ │ ├── Modules │ │ │ ├── Home │ │ │ │ ├── HomeInterfaces.swift │ │ │ │ ├── HomePresenter.swift │ │ │ │ ├── HomeView.swift │ │ │ │ └── HomeWireframe.swift │ │ │ └── Login │ │ │ │ ├── ForgotPasswordView.swift │ │ │ │ ├── LoginInterfaces.swift │ │ │ │ ├── LoginPresenter.swift │ │ │ │ ├── LoginView.swift │ │ │ │ ├── LoginWireframe.swift │ │ │ │ └── SignUpView.swift │ │ ├── Podfile │ │ ├── SwiftCampDevs Localizations │ │ │ ├── ar-AE.xcloc │ │ │ │ ├── Localized Contents │ │ │ │ │ └── ar-AE.xliff │ │ │ │ ├── Source Contents │ │ │ │ │ ├── OneSignalNotificationServiceExtension │ │ │ │ │ │ └── InfoPlist.xcstrings │ │ │ │ │ └── SwiftCampDevs │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ │ ├── Localizable.xcstrings │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── contents.json │ │ │ ├── en.xcloc │ │ │ │ ├── Localized Contents │ │ │ │ │ └── en.xliff │ │ │ │ ├── Source Contents │ │ │ │ │ ├── OneSignalNotificationServiceExtension │ │ │ │ │ │ └── InfoPlist.xcstrings │ │ │ │ │ └── SwiftCampDevs │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ │ ├── Localizable.xcstrings │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── contents.json │ │ │ ├── es.xcloc │ │ │ │ ├── Localized Contents │ │ │ │ │ └── es.xliff │ │ │ │ ├── Source Contents │ │ │ │ │ ├── OneSignalNotificationServiceExtension │ │ │ │ │ │ └── InfoPlist.xcstrings │ │ │ │ │ └── SwiftCampDevs │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ │ ├── Localizable.xcstrings │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── contents.json │ │ │ ├── he.xcloc │ │ │ │ ├── Localized Contents │ │ │ │ │ └── he.xliff │ │ │ │ ├── Source Contents │ │ │ │ │ ├── OneSignalNotificationServiceExtension │ │ │ │ │ │ └── InfoPlist.xcstrings │ │ │ │ │ └── SwiftCampDevs │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ │ ├── Localizable.xcstrings │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── contents.json │ │ │ ├── tr.xcloc │ │ │ │ ├── Localized Contents │ │ │ │ │ └── tr.xliff │ │ │ │ ├── Source Contents │ │ │ │ │ ├── OneSignalNotificationServiceExtension │ │ │ │ │ │ └── InfoPlist.xcstrings │ │ │ │ │ └── SwiftCampDevs │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ │ ├── Localizable.xcstrings │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── contents.json │ │ │ ├── ur-IN.xcloc │ │ │ │ ├── Localized Contents │ │ │ │ │ └── ur-IN.xliff │ │ │ │ ├── Source Contents │ │ │ │ │ ├── OneSignalNotificationServiceExtension │ │ │ │ │ │ └── InfoPlist.xcstrings │ │ │ │ │ └── SwiftCampDevs │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ │ ├── Localizable.xcstrings │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── contents.json │ │ │ ├── ur-PK.xcloc │ │ │ │ ├── Localized Contents │ │ │ │ │ └── ur-PK.xliff │ │ │ │ ├── Source Contents │ │ │ │ │ ├── OneSignalNotificationServiceExtension │ │ │ │ │ │ └── InfoPlist.xcstrings │ │ │ │ │ └── SwiftCampDevs │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ │ ├── Localizable.xcstrings │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── contents.json │ │ │ └── zh-Hans.xcloc │ │ │ │ ├── Localized Contents │ │ │ │ └── zh-Hans.xliff │ │ │ │ ├── Source Contents │ │ │ │ ├── OneSignalNotificationServiceExtension │ │ │ │ │ └── InfoPlist.xcstrings │ │ │ │ └── SwiftCampDevs │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ │ │ ├── Localizable.xcstrings │ │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── contents.json │ │ ├── SwiftCampDevs.entitlements │ │ ├── SwiftUI Setup │ │ │ ├── HostingNavigationController.swift │ │ │ └── LazyHostingViewController.swift │ │ ├── Utils │ │ │ ├── AppColors.swift │ │ │ ├── AppImages.swift │ │ │ └── Strings.swift │ │ ├── VIPER │ │ │ ├── BaseWireframe.swift │ │ │ ├── FormatterInterface.swift │ │ │ ├── InteractorInterface.swift │ │ │ ├── PresenterInterface.swift │ │ │ ├── Progressable.swift │ │ │ └── ViewInterface.swift │ │ └── Views │ │ │ └── BaseViews │ │ │ └── NavbarView.swift │ └── SwiftCampDevsTests │ │ ├── BatteryHelperTests.swift │ │ ├── EnvironmentHelperTests.swift │ │ ├── FirebaseHelperTests.swift │ │ ├── LoggerHelperTests.swift │ │ ├── NetworkHelperTests.swift │ │ ├── PermissionHelperTests.swift │ │ ├── SocialSignInHelperTests.swift │ │ └── TimeHelperTests.swift └── SwiftUI-Components-App │ ├── MFSCamp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── MFSCamp.xcscheme │ ├── OneSignalNotificationServiceExtension │ ├── Info.plist │ ├── NotificationService.swift │ └── OneSignalNotificationServiceExtensionRelease.entitlements │ ├── Podfile │ ├── Pods │ └── OneSignal │ │ ├── LICENSE │ │ ├── README.md │ │ └── iOS_SDK │ │ └── OneSignalSDK │ │ ├── OneSignal_Core │ │ ├── OneSignalCore.xcframework.zip │ │ └── OneSignalCore.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalCore.framework │ │ │ │ ├── Headers │ │ │ │ ├── NSDateFormatter+OneSignal.h │ │ │ │ ├── NSString+OneSignal.h │ │ │ │ ├── NSURL+OneSignal.h │ │ │ │ ├── OSBundleUtils.h │ │ │ │ ├── OSDeviceUtils.h │ │ │ │ ├── OSDialogInstanceManager.h │ │ │ │ ├── OSInAppMessages.h │ │ │ │ ├── OSJSONHandling.h │ │ │ │ ├── OSLocation.h │ │ │ │ ├── OSMacros.h │ │ │ │ ├── OSNetworkingUtils.h │ │ │ │ ├── OSNotification+Internal.h │ │ │ │ ├── OSNotification.h │ │ │ │ ├── OSNotificationClasses.h │ │ │ │ ├── OSObservable.h │ │ │ │ ├── OSPrivacyConsentController.h │ │ │ │ ├── OSRemoteParamController.h │ │ │ │ ├── OSRequests.h │ │ │ │ ├── OneSignalClient.h │ │ │ │ ├── OneSignalClientError.h │ │ │ │ ├── OneSignalCommonDefines.h │ │ │ │ ├── OneSignalConfigManager.h │ │ │ │ ├── OneSignalCore.h │ │ │ │ ├── OneSignalCoreHelper.h │ │ │ │ ├── OneSignalLog.h │ │ │ │ ├── OneSignalMobileProvision.h │ │ │ │ ├── OneSignalRequest.h │ │ │ │ ├── OneSignalSelectorHelpers.h │ │ │ │ ├── OneSignalTrackFirebaseAnalytics.h │ │ │ │ ├── OneSignalUserDefaults.h │ │ │ │ ├── OneSignalWrapper.h │ │ │ │ └── SwizzlingForwarder.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalCore │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalCore.framework │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalCore │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── NSDateFormatter+OneSignal.h │ │ │ │ │ ├── NSString+OneSignal.h │ │ │ │ │ ├── NSURL+OneSignal.h │ │ │ │ │ ├── OSBundleUtils.h │ │ │ │ │ ├── OSDeviceUtils.h │ │ │ │ │ ├── OSDialogInstanceManager.h │ │ │ │ │ ├── OSInAppMessages.h │ │ │ │ │ ├── OSJSONHandling.h │ │ │ │ │ ├── OSLocation.h │ │ │ │ │ ├── OSMacros.h │ │ │ │ │ ├── OSNetworkingUtils.h │ │ │ │ │ ├── OSNotification+Internal.h │ │ │ │ │ ├── OSNotification.h │ │ │ │ │ ├── OSNotificationClasses.h │ │ │ │ │ ├── OSObservable.h │ │ │ │ │ ├── OSPrivacyConsentController.h │ │ │ │ │ ├── OSRemoteParamController.h │ │ │ │ │ ├── OSRequests.h │ │ │ │ │ ├── OneSignalClient.h │ │ │ │ │ ├── OneSignalClientError.h │ │ │ │ │ ├── OneSignalCommonDefines.h │ │ │ │ │ ├── OneSignalConfigManager.h │ │ │ │ │ ├── OneSignalCore.h │ │ │ │ │ ├── OneSignalCoreHelper.h │ │ │ │ │ ├── OneSignalLog.h │ │ │ │ │ ├── OneSignalMobileProvision.h │ │ │ │ │ ├── OneSignalRequest.h │ │ │ │ │ ├── OneSignalSelectorHelpers.h │ │ │ │ │ ├── OneSignalTrackFirebaseAnalytics.h │ │ │ │ │ ├── OneSignalUserDefaults.h │ │ │ │ │ ├── OneSignalWrapper.h │ │ │ │ │ └── SwizzlingForwarder.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalCore │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalCore.framework │ │ │ ├── Headers │ │ │ ├── NSDateFormatter+OneSignal.h │ │ │ ├── NSString+OneSignal.h │ │ │ ├── NSURL+OneSignal.h │ │ │ ├── OSBundleUtils.h │ │ │ ├── OSDeviceUtils.h │ │ │ ├── OSDialogInstanceManager.h │ │ │ ├── OSInAppMessages.h │ │ │ ├── OSJSONHandling.h │ │ │ ├── OSLocation.h │ │ │ ├── OSMacros.h │ │ │ ├── OSNetworkingUtils.h │ │ │ ├── OSNotification+Internal.h │ │ │ ├── OSNotification.h │ │ │ ├── OSNotificationClasses.h │ │ │ ├── OSObservable.h │ │ │ ├── OSPrivacyConsentController.h │ │ │ ├── OSRemoteParamController.h │ │ │ ├── OSRequests.h │ │ │ ├── OneSignalClient.h │ │ │ ├── OneSignalClientError.h │ │ │ ├── OneSignalCommonDefines.h │ │ │ ├── OneSignalConfigManager.h │ │ │ ├── OneSignalCore.h │ │ │ ├── OneSignalCoreHelper.h │ │ │ ├── OneSignalLog.h │ │ │ ├── OneSignalMobileProvision.h │ │ │ ├── OneSignalRequest.h │ │ │ ├── OneSignalSelectorHelpers.h │ │ │ ├── OneSignalTrackFirebaseAnalytics.h │ │ │ ├── OneSignalUserDefaults.h │ │ │ ├── OneSignalWrapper.h │ │ │ └── SwizzlingForwarder.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalCore │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── OneSignal_Extension │ │ ├── OneSignalExtension.xcframework.zip │ │ └── OneSignalExtension.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalExtension.framework │ │ │ │ ├── Headers │ │ │ │ ├── OneSignalAttachmentHandler.h │ │ │ │ ├── OneSignalExtension.h │ │ │ │ ├── OneSignalExtensionBadgeHandler.h │ │ │ │ ├── OneSignalNotificationServiceExtensionHandler.h │ │ │ │ └── OneSignalReceiveReceiptsController.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalExtension │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalExtension.framework │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalExtension │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── OneSignalAttachmentHandler.h │ │ │ │ │ ├── OneSignalExtension.h │ │ │ │ │ ├── OneSignalExtensionBadgeHandler.h │ │ │ │ │ ├── OneSignalNotificationServiceExtensionHandler.h │ │ │ │ │ └── OneSignalReceiveReceiptsController.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalExtension │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalExtension.framework │ │ │ ├── Headers │ │ │ ├── OneSignalAttachmentHandler.h │ │ │ ├── OneSignalExtension.h │ │ │ ├── OneSignalExtensionBadgeHandler.h │ │ │ ├── OneSignalNotificationServiceExtensionHandler.h │ │ │ └── OneSignalReceiveReceiptsController.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalExtension │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── OneSignal_InAppMessages │ │ ├── OneSignalInAppMessages.xcframework.zip │ │ └── OneSignalInAppMessages.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalInAppMessages.framework │ │ │ │ ├── Headers │ │ │ │ └── OneSignalInAppMessages.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalInAppMessages │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalInAppMessages.framework │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalInAppMessages │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── OneSignalInAppMessages.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalInAppMessages │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalInAppMessages.framework │ │ │ ├── Headers │ │ │ └── OneSignalInAppMessages.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalInAppMessages │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── OneSignal_LiveActivities │ │ ├── OneSignalLiveActivities.xcframework.zip │ │ └── OneSignalLiveActivities.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalLiveActivities.framework │ │ │ │ ├── Headers │ │ │ │ ├── OneSignalLiveActivities-Swift.h │ │ │ │ └── OneSignalLiveActivities.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalLiveActivities.swiftmodule │ │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalLiveActivities │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalLiveActivities.framework │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalLiveActivities │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── OneSignalLiveActivities-Swift.h │ │ │ │ │ └── OneSignalLiveActivities.h │ │ │ │ ├── Modules │ │ │ │ │ ├── OneSignalLiveActivities.swiftmodule │ │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalLiveActivities │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalLiveActivities.framework │ │ │ ├── Headers │ │ │ ├── OneSignalLiveActivities-Swift.h │ │ │ └── OneSignalLiveActivities.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── OneSignalLiveActivities.swiftmodule │ │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── OneSignalLiveActivities │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── OneSignal_Location │ │ ├── OneSignalLocation.xcframework.zip │ │ └── OneSignalLocation.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalLocation.framework │ │ │ │ ├── Headers │ │ │ │ └── OneSignalLocationManager.h │ │ │ │ ├── Info.plist │ │ │ │ ├── OneSignalLocation │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalLocation.framework │ │ │ │ ├── Headers │ │ │ │ ├── OneSignalLocation │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── OneSignalLocationManager.h │ │ │ │ ├── OneSignalLocation │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalLocation.framework │ │ │ ├── Headers │ │ │ └── OneSignalLocationManager.h │ │ │ ├── Info.plist │ │ │ ├── OneSignalLocation │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── OneSignal_Notifications │ │ ├── OneSignalNotifications.xcframework.zip │ │ └── OneSignalNotifications.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalNotifications.framework │ │ │ │ ├── Headers │ │ │ │ ├── OSNotification+OneSignal.h │ │ │ │ ├── OSNotificationsManager.h │ │ │ │ ├── OSPermission.h │ │ │ │ ├── OneSignalNotificationSettings.h │ │ │ │ └── OneSignalNotifications.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalNotifications │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalNotifications.framework │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalNotifications │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── OSNotification+OneSignal.h │ │ │ │ │ ├── OSNotificationsManager.h │ │ │ │ │ ├── OSPermission.h │ │ │ │ │ ├── OneSignalNotificationSettings.h │ │ │ │ │ └── OneSignalNotifications.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalNotifications │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalNotifications.framework │ │ │ ├── Headers │ │ │ ├── OSNotification+OneSignal.h │ │ │ ├── OSNotificationsManager.h │ │ │ ├── OSPermission.h │ │ │ ├── OneSignalNotificationSettings.h │ │ │ └── OneSignalNotifications.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalNotifications │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── OneSignal_OSCore │ │ ├── OneSignalOSCore.xcframework.zip │ │ └── OneSignalOSCore.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalOSCore.framework │ │ │ │ ├── Headers │ │ │ │ ├── OneSignalOSCore-Swift.h │ │ │ │ └── OneSignalOSCore.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalOSCore.swiftmodule │ │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalOSCore │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalOSCore.framework │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalOSCore │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── OneSignalOSCore-Swift.h │ │ │ │ │ └── OneSignalOSCore.h │ │ │ │ ├── Modules │ │ │ │ │ ├── OneSignalOSCore.swiftmodule │ │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalOSCore │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalOSCore.framework │ │ │ ├── Headers │ │ │ ├── OneSignalOSCore-Swift.h │ │ │ └── OneSignalOSCore.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── OneSignalOSCore.swiftmodule │ │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── OneSignalOSCore │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── OneSignal_Outcomes │ │ ├── OneSignalOutcomes.xcframework.zip │ │ └── OneSignalOutcomes.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalOutcomes.framework │ │ │ │ ├── Headers │ │ │ │ ├── OSCachedUniqueOutcome.h │ │ │ │ ├── OSChannelTracker.h │ │ │ │ ├── OSFocusInfluenceParam.h │ │ │ │ ├── OSInAppMessageOutcome.h │ │ │ │ ├── OSIndirectInfluence.h │ │ │ │ ├── OSInfluence.h │ │ │ │ ├── OSInfluenceDataDefines.h │ │ │ │ ├── OSInfluenceDataRepository.h │ │ │ │ ├── OSOutcomeEvent.h │ │ │ │ ├── OSOutcomeEventParams.h │ │ │ │ ├── OSOutcomeEventsCache.h │ │ │ │ ├── OSOutcomeEventsFactory.h │ │ │ │ ├── OSOutcomeEventsRepository.h │ │ │ │ ├── OSOutcomeSource.h │ │ │ │ ├── OSOutcomeSourceBody.h │ │ │ │ ├── OSSessionManager.h │ │ │ │ ├── OSTrackerFactory.h │ │ │ │ ├── OneSignalOutcomeEventsController.h │ │ │ │ └── OneSignalOutcomes.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalOutcomes │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalOutcomes.framework │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalOutcomes │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── OSCachedUniqueOutcome.h │ │ │ │ │ ├── OSChannelTracker.h │ │ │ │ │ ├── OSFocusInfluenceParam.h │ │ │ │ │ ├── OSInAppMessageOutcome.h │ │ │ │ │ ├── OSIndirectInfluence.h │ │ │ │ │ ├── OSInfluence.h │ │ │ │ │ ├── OSInfluenceDataDefines.h │ │ │ │ │ ├── OSInfluenceDataRepository.h │ │ │ │ │ ├── OSOutcomeEvent.h │ │ │ │ │ ├── OSOutcomeEventParams.h │ │ │ │ │ ├── OSOutcomeEventsCache.h │ │ │ │ │ ├── OSOutcomeEventsFactory.h │ │ │ │ │ ├── OSOutcomeEventsRepository.h │ │ │ │ │ ├── OSOutcomeSource.h │ │ │ │ │ ├── OSOutcomeSourceBody.h │ │ │ │ │ ├── OSSessionManager.h │ │ │ │ │ ├── OSTrackerFactory.h │ │ │ │ │ ├── OneSignalOutcomeEventsController.h │ │ │ │ │ └── OneSignalOutcomes.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalOutcomes │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalOutcomes.framework │ │ │ ├── Headers │ │ │ ├── OSCachedUniqueOutcome.h │ │ │ ├── OSChannelTracker.h │ │ │ ├── OSFocusInfluenceParam.h │ │ │ ├── OSInAppMessageOutcome.h │ │ │ ├── OSIndirectInfluence.h │ │ │ ├── OSInfluence.h │ │ │ ├── OSInfluenceDataDefines.h │ │ │ ├── OSInfluenceDataRepository.h │ │ │ ├── OSOutcomeEvent.h │ │ │ ├── OSOutcomeEventParams.h │ │ │ ├── OSOutcomeEventsCache.h │ │ │ ├── OSOutcomeEventsFactory.h │ │ │ ├── OSOutcomeEventsRepository.h │ │ │ ├── OSOutcomeSource.h │ │ │ ├── OSOutcomeSourceBody.h │ │ │ ├── OSSessionManager.h │ │ │ ├── OSTrackerFactory.h │ │ │ ├── OneSignalOutcomeEventsController.h │ │ │ └── OneSignalOutcomes.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── OneSignalOutcomes │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── OneSignal_User │ │ ├── OneSignalUser.xcframework.zip │ │ └── OneSignalUser.xcframework │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ │ ├── ios-arm64 │ │ │ └── OneSignalUser.framework │ │ │ │ ├── Headers │ │ │ │ ├── OneSignalUser-Swift.h │ │ │ │ └── OneSignalUser.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalUser.swiftmodule │ │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalUser │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── ios-arm64_x86_64-maccatalyst │ │ │ └── OneSignalUser.framework │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── OneSignalUser │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── OneSignalUser-Swift.h │ │ │ │ │ └── OneSignalUser.h │ │ │ │ ├── Modules │ │ │ │ │ ├── OneSignalUser.swiftmodule │ │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ ├── OneSignalUser │ │ │ │ ├── Resources │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ └── ios-arm64_x86_64-simulator │ │ │ └── OneSignalUser.framework │ │ │ ├── Headers │ │ │ ├── OneSignalUser-Swift.h │ │ │ └── OneSignalUser.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── OneSignalUser.swiftmodule │ │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── OneSignalUser │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── OneSignal_XCFramework │ │ ├── OneSignalFramework.xcframework.zip │ │ └── OneSignalFramework.xcframework │ │ ├── Info.plist │ │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ │ ├── ios-arm64 │ │ └── OneSignalFramework.framework │ │ │ ├── Headers │ │ │ ├── OneSignalFramework-Swift.h │ │ │ └── OneSignalFramework.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── OneSignalFramework.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── OneSignalFramework │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── ios-arm64_x86_64-maccatalyst │ │ └── OneSignalFramework.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── OneSignalFramework │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── OneSignalFramework-Swift.h │ │ │ │ └── OneSignalFramework.h │ │ │ ├── Modules │ │ │ │ ├── OneSignalFramework.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ ├── arm64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ ├── x86_64-apple-ios-macabi.private.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── OneSignalFramework │ │ │ └── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ └── Current │ │ └── ios-arm64_x86_64-simulator │ │ └── OneSignalFramework.framework │ │ ├── Headers │ │ ├── OneSignalFramework-Swift.h │ │ └── OneSignalFramework.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── OneSignalFramework.swiftmodule │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ └── module.modulemap │ │ ├── OneSignalFramework │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources │ └── SwiftComponentsApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 180.png │ │ ├── 29.png │ │ ├── 40.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 80.png │ │ ├── 87.png │ │ └── Contents.json │ ├── Contents.json │ ├── NavigationView.imageset │ │ ├── Contents.json │ │ └── NavigationView.png │ ├── anitkabir_image.imageset │ │ ├── Contents.json │ │ └── anitkabir_image.jpeg │ ├── ata1.imageset │ │ ├── Contents.json │ │ ├── ata1 1.jpg │ │ ├── ata1 2.jpg │ │ └── ata1.jpg │ ├── ata2.imageset │ │ ├── Contents.json │ │ ├── ata2 1.jpg │ │ ├── ata2 2.jpg │ │ └── ata2.jpg │ ├── ata3.imageset │ │ ├── Contents.json │ │ ├── ata3 1.jpeg │ │ ├── ata3 2.jpeg │ │ └── ata3.jpeg │ ├── ata4.imageset │ │ ├── Contents.json │ │ ├── ata4 1.jpg │ │ ├── ata4 2.jpg │ │ └── ata4.jpg │ ├── ata5.imageset │ │ ├── Contents.json │ │ ├── ata5 1.jpeg │ │ ├── ata5 2.jpeg │ │ └── ata5.jpeg │ ├── ata6.imageset │ │ ├── Contents.json │ │ ├── ata6 1.jpeg │ │ ├── ata6 2.jpeg │ │ └── ata6.jpeg │ └── exampleImage.imageset │ │ ├── Contents.json │ │ └── exampleImage.jpg │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── DemoApp.entitlements │ ├── DemoAppRelease.entitlements │ ├── EnvironmentConfig.plist │ ├── Helpers │ ├── BatteryHelper.swift │ ├── EnvironmentHelper.swift │ ├── LocalStorageHelper.swift │ ├── LoggerHelper.swift │ └── TimeHelper.swift │ ├── Info.plist │ ├── Initializers │ ├── InitialWireframeInitializer.swift │ ├── Initializable.swift │ └── StartupInitializationBuilder.swift │ ├── Modules │ ├── Home │ │ ├── Components │ │ │ ├── ActionSheet │ │ │ │ ├── ActionSheetInterfaces.swift │ │ │ │ ├── ActionSheetPresenter.swift │ │ │ │ ├── ActionSheetView.swift │ │ │ │ └── ActionSheetWireFrame.swift │ │ │ ├── Alert │ │ │ │ ├── AlertInterfaces.swift │ │ │ │ ├── AlertPresenter.swift │ │ │ │ ├── AlertView.swift │ │ │ │ └── AlertWireframe.swift │ │ │ ├── Animation │ │ │ │ ├── AnimationInterfaces.swift │ │ │ │ ├── AnimationPresenter.swift │ │ │ │ ├── AnimationView.swift │ │ │ │ └── AnimationWireframe.swift │ │ │ ├── AnyView │ │ │ │ ├── AnyViewInterfaces.swift │ │ │ │ ├── AnyViewPresenter.swift │ │ │ │ ├── AnyViewWireframe.swift │ │ │ │ └── CustomAnyView.swift │ │ │ ├── AttributedText │ │ │ │ ├── AttributedTextInterfaces.swift │ │ │ │ ├── AttributedTextPresenter.swift │ │ │ │ ├── AttributedTextView.swift │ │ │ │ └── AttributedTextWireframe.swift │ │ │ ├── Background │ │ │ │ ├── BackgroundInterfaces.swift │ │ │ │ ├── BackgroundPresenter.swift │ │ │ │ ├── BackgroundView.swift │ │ │ │ └── BackgroundWireframe.swift │ │ │ ├── Binding │ │ │ │ ├── BindingInterfaces.swift │ │ │ │ ├── BindingPresenter.swift │ │ │ │ ├── BindingView.swift │ │ │ │ └── BindingWireframe.swift │ │ │ ├── Button │ │ │ │ ├── ButtonInterfaces.swift │ │ │ │ ├── ButtonPresenter.swift │ │ │ │ ├── ButtonView.swift │ │ │ │ └── ButtonWireframe.swift │ │ │ ├── Canvas │ │ │ │ ├── CanvasInterfaces.swift │ │ │ │ ├── CanvasPresenter.swift │ │ │ │ ├── CanvasView.swift │ │ │ │ └── CanvasWireframe.swift │ │ │ ├── Capsule │ │ │ │ ├── CapsuleInterfaces.swift │ │ │ │ ├── CapsulePresenter.swift │ │ │ │ ├── CapsuleView.swift │ │ │ │ └── CapsuleWireframe.swift │ │ │ ├── Circle │ │ │ │ ├── CircleInterfaces.swift │ │ │ │ ├── CirclePresenter.swift │ │ │ │ ├── CircleView.swift │ │ │ │ └── CircleWireframe.swift │ │ │ ├── ColoPicker │ │ │ │ ├── ColorPickerInterfaces.swift │ │ │ │ ├── ColorPickerPresenter.swift │ │ │ │ ├── ColorPickerView.swift │ │ │ │ └── ColorPickerWireframe.swift │ │ │ ├── ConfirmationDialog │ │ │ │ ├── ConfirmationDialogInterfaces.swift │ │ │ │ ├── ConfirmationDialogPresenter.swift │ │ │ │ ├── ConfirmationDialogView.swift │ │ │ │ └── ConfirmationDialogWireframe.swift │ │ │ ├── ContentView │ │ │ │ ├── ContentInterfaces.swift │ │ │ │ ├── ContentPresenter.swift │ │ │ │ ├── ContentView.swift │ │ │ │ └── ContentWireframe.swift │ │ │ ├── ContextMenu │ │ │ │ ├── ContextMenuInterfaces.swift │ │ │ │ ├── ContextMenuPresenter.swift │ │ │ │ ├── ContextMenuView.swift │ │ │ │ └── ContextMenuWireframe.swift │ │ │ ├── CornerRadius │ │ │ │ ├── CornerRadiusInterfaces.swift │ │ │ │ ├── CornerRadiusPresenter.swift │ │ │ │ ├── CornerRadiusView.swift │ │ │ │ └── CornerRadiusWireframe.swift │ │ │ ├── CustomShape │ │ │ │ ├── CustomShapeHostingController.swift │ │ │ │ ├── CustomShapeInterfaces.swift │ │ │ │ ├── CustomShapePresenter.swift │ │ │ │ ├── CustomShapeView.swift │ │ │ │ └── CustomShapeWireframe.swift │ │ │ ├── DatePicker │ │ │ │ ├── DatePickerInterfaces.swift │ │ │ │ ├── DatePickerPresenter.swift │ │ │ │ ├── DatePickerView.swift │ │ │ │ └── DatePickerWireframe.swift │ │ │ ├── Divider │ │ │ │ ├── DividerInterfaces.swift │ │ │ │ ├── DividerPresenter.swift │ │ │ │ ├── DividerView.swift │ │ │ │ └── DividerWireframe.swift │ │ │ ├── DragGesture │ │ │ │ ├── DragGestureInterfaces.swift │ │ │ │ ├── DragGesturePresenter.swift │ │ │ │ ├── DragGestureView.swift │ │ │ │ └── DragGestureWireframe.swift │ │ │ ├── Ellipse │ │ │ │ ├── EllipseInterfaces.swift │ │ │ │ ├── EllipsePresenter.swift │ │ │ │ ├── EllipseView.swift │ │ │ │ └── EllipseWireframe.swift │ │ │ ├── Environment │ │ │ │ ├── EnvironmentInterfaces.swift │ │ │ │ ├── EnvironmentPresenter.swift │ │ │ │ ├── EnvironmentView.swift │ │ │ │ └── EnvironmentWireframe.swift │ │ │ ├── EnvironmentObject │ │ │ │ ├── EnvironmentObjectEntity.swift │ │ │ │ ├── EnvironmentObjectInterfaces.swift │ │ │ │ ├── EnvironmentObjectPresenter.swift │ │ │ │ ├── EnvironmentObjectView.swift │ │ │ │ └── EnvironmentObjectWireframe.swift │ │ │ ├── ForegroundColor │ │ │ │ ├── ForegroundColorInterfaces.swift │ │ │ │ ├── ForegroundColorPresenter.swift │ │ │ │ ├── ForegroundColorView.swift │ │ │ │ └── ForegroundColorWireframe.swift │ │ │ ├── Form │ │ │ │ ├── FormInterfaces.swift │ │ │ │ ├── FormPresenter.swift │ │ │ │ ├── FormView.swift │ │ │ │ └── FormWireframe.swift │ │ │ ├── Frame │ │ │ │ ├── FrameInterfaces.swift │ │ │ │ ├── FramePresenter.swift │ │ │ │ ├── FrameView.swift │ │ │ │ └── FrameWireframe.swift │ │ │ ├── GeometryReader │ │ │ │ ├── GeometryReaderInterfaces.swift │ │ │ │ ├── GeometryReaderPresenter.swift │ │ │ │ ├── GeometryReaderView.swift │ │ │ │ └── GeometryReaderWireframe.swift │ │ │ ├── Grid │ │ │ │ ├── GridInterfaces.swift │ │ │ │ ├── GridPresenter.swift │ │ │ │ ├── GridView.swift │ │ │ │ └── GridWireframe.swift │ │ │ ├── GridRow │ │ │ │ ├── GridRowInterfaces.swift │ │ │ │ ├── GridRowPresenter.swift │ │ │ │ ├── GridRowView.swift │ │ │ │ └── GridRowWireframe.swift │ │ │ ├── Group │ │ │ │ ├── GroupInterfaces.swift │ │ │ │ ├── GroupPresenter.swift │ │ │ │ ├── GroupView.swift │ │ │ │ └── GroupWireframe.swift │ │ │ ├── GroupBox │ │ │ │ ├── GroupBoxInterfaces.swift │ │ │ │ ├── GroupBoxPresenter.swift │ │ │ │ ├── GroupBoxView.swift │ │ │ │ └── GroupBoxWireframe.swift │ │ │ ├── HStack │ │ │ │ ├── HStackInterfaces.swift │ │ │ │ ├── HStackPresenter.swift │ │ │ │ ├── HStackView.swift │ │ │ │ └── HStackWireframe.swift │ │ │ ├── Image │ │ │ │ ├── ImageInterFaces.swift │ │ │ │ ├── ImagePresenter.swift │ │ │ │ ├── ImageView.swift │ │ │ │ └── ImageWireFrame.swift │ │ │ ├── Label │ │ │ │ ├── LabelInterfaces.swift │ │ │ │ ├── LabelPresenter.swift │ │ │ │ ├── LabelView.swift │ │ │ │ └── LabelWireframe.swift │ │ │ ├── LazyHGrid │ │ │ │ ├── LazyHGridInterfaces.swift │ │ │ │ ├── LazyHGridPresenter.swift │ │ │ │ ├── LazyHGridView.swift │ │ │ │ └── LazyHGridWireframe.swift │ │ │ ├── LazyHStack │ │ │ │ ├── LazyHStackInterfaces.swift │ │ │ │ ├── LazyHStackPresenter.swift │ │ │ │ ├── LazyHStackView.swift │ │ │ │ └── LazyHStackWireframe.swift │ │ │ ├── LazyVGrid │ │ │ │ ├── LazyVGridInterfaces.swift │ │ │ │ ├── LazyVGridPresenter.swift │ │ │ │ ├── LazyVGridView.swift │ │ │ │ └── LazyVGridWireframe.swift │ │ │ ├── LazyVStack │ │ │ │ ├── LazyVStackInterfaces.swift │ │ │ │ ├── LazyVStackPresenter.swift │ │ │ │ ├── LazyVStackView.swift │ │ │ │ └── LazyVStackWireframe.swift │ │ │ ├── Link │ │ │ │ ├── LinkPresenter.swift │ │ │ │ ├── LinkView.swift │ │ │ │ ├── LinkWireframe.swift │ │ │ │ └── LinkWireframeInterface.swift │ │ │ ├── List │ │ │ │ ├── ListInterfaces.swift │ │ │ │ ├── ListPresenter.swift │ │ │ │ ├── ListView.swift │ │ │ │ └── ListWireframe.swift │ │ │ ├── LongPressGesture │ │ │ │ ├── LongPressGestureInterfaces.swift │ │ │ │ ├── LongPressGesturePresenter.swift │ │ │ │ ├── LongPressGestureView.swift │ │ │ │ └── LongPressGestureWireframe.swift │ │ │ ├── MagnificationGesture │ │ │ │ ├── MagnificationGestureInterfaces.swift │ │ │ │ ├── MagnificationGesturePresenter.swift │ │ │ │ ├── MagnificationGestureView.swift │ │ │ │ └── MagnificationGestureWireframe.swift │ │ │ ├── Map │ │ │ │ ├── MapInterfaces.swift │ │ │ │ ├── MapPresenter.swift │ │ │ │ ├── MapView.swift │ │ │ │ └── MapWireframe.swift │ │ │ ├── MatchedGeometryEffect │ │ │ │ ├── MatchedGeometryEffectInterface.swift │ │ │ │ ├── MatchedGeometryEffectPresenter.swift │ │ │ │ ├── MatchedGeometryEffectView.swift │ │ │ │ └── MatchedGeometryEffectWireframe.swift │ │ │ ├── MenuButton │ │ │ │ ├── MenuButtonInterfaces.swift │ │ │ │ ├── MenuButtonPresenter.swift │ │ │ │ ├── MenuButtonView.swift │ │ │ │ └── MenuButtonWireframe.swift │ │ │ ├── NavigationStack │ │ │ │ ├── NavigationStackInterface.swift │ │ │ │ ├── NavigationStackPresenter.swift │ │ │ │ ├── NavigationStackView.swift │ │ │ │ └── NavigationStackWireframe.swift │ │ │ ├── NavigationView │ │ │ │ ├── NavigationInterfaces.swift │ │ │ │ ├── NavigationPresenter.swift │ │ │ │ ├── NavigationView.swift │ │ │ │ └── NavigationWireframe.swift │ │ │ ├── ObservedObject │ │ │ │ ├── ObservedObjectEntity.swift │ │ │ │ ├── ObservedObjectInteractor.swift │ │ │ │ ├── ObservedObjectInterfaces.swift │ │ │ │ ├── ObservedObjectPresenter.swift │ │ │ │ ├── ObservedObjectView.swift │ │ │ │ └── ObservedObjectWireframe.swift │ │ │ ├── Offset │ │ │ │ ├── OffsetInterfaces.swift │ │ │ │ ├── OffsetPresenter.swift │ │ │ │ ├── OffsetView.swift │ │ │ │ └── OffsetWireframe.swift │ │ │ ├── Opacity │ │ │ │ ├── OpacityInterfaces.swift │ │ │ │ ├── OpacityPresenter.swift │ │ │ │ ├── OpacityView.swift │ │ │ │ └── OpacityWireframe.swift │ │ │ ├── Padding │ │ │ │ ├── PaddingInterfaces.swift │ │ │ │ ├── PaddingPresenter.swift │ │ │ │ ├── PaddingView.swift │ │ │ │ └── PaddingWireframe.swift │ │ │ ├── Path │ │ │ │ ├── PathInterfaces.swift │ │ │ │ ├── PathPresenter.swift │ │ │ │ ├── PathView.swift │ │ │ │ └── PathWireframe.swift │ │ │ ├── Picker │ │ │ │ ├── PickerInterfaces.swift │ │ │ │ ├── PickerPresenter.swift │ │ │ │ ├── PickerView.swift │ │ │ │ └── PickerWireframe.swift │ │ │ ├── Popover │ │ │ │ ├── PopoverInterfaces.swift │ │ │ │ ├── PopoverPresenter.swift │ │ │ │ ├── PopoverView.swift │ │ │ │ └── PopoverWireframe.swift │ │ │ ├── ProgressIndicator │ │ │ │ ├── ProgressIndicatorInterfaces.swift │ │ │ │ ├── ProgressIndicatorPresenter.swift │ │ │ │ ├── ProgressIndicatorView.swift │ │ │ │ └── ProgressIndicatorWireframe.swift │ │ │ ├── ProgressScreen │ │ │ │ ├── ProgresView.swift │ │ │ │ ├── ProgressInterfaces.swift │ │ │ │ ├── ProgressPresenter.swift │ │ │ │ └── ProgressWireframe.swift │ │ │ ├── Rectangle │ │ │ │ ├── RecanglePresenter.swift │ │ │ │ ├── RectangleInterfaces.swift │ │ │ │ ├── RectangleView.swift │ │ │ │ └── RectangleWireframe.swift │ │ │ ├── RotationEffect │ │ │ │ ├── RotationEffectInterfaces.swift │ │ │ │ ├── RotationEffectPresenter.swift │ │ │ │ ├── RotationEffectView.swift │ │ │ │ └── RotationEffectWireframe.swift │ │ │ ├── RotationGesture │ │ │ │ ├── RotationGestureInterfaces.swift │ │ │ │ ├── RotationGesturePresenter.swift │ │ │ │ ├── RotationGestureView.swift │ │ │ │ └── RotationGestureWireframe.swift │ │ │ ├── RoundedRectangle │ │ │ │ ├── RoundedRectangleInterfaces.swift │ │ │ │ ├── RoundedRectanglePresenter.swift │ │ │ │ ├── RoundedRectangleView.swift │ │ │ │ └── RoundedRectangleWireframe.swift │ │ │ ├── ScaleEffect │ │ │ │ ├── ScaleEffectInterfaces.swift │ │ │ │ ├── ScaleEffectPresenter.swift │ │ │ │ ├── ScaleEffectView.swift │ │ │ │ └── ScaleEffectWireframe.swift │ │ │ ├── ScrollView │ │ │ │ ├── CustomScrollView.swift │ │ │ │ ├── ScrollViewInterfaces.swift │ │ │ │ ├── ScrollViewPresenter.swift │ │ │ │ └── ScrollViewWireFrame.swift │ │ │ ├── Section │ │ │ │ ├── SectionInteractor.swift │ │ │ │ ├── SectionInterfaces.swift │ │ │ │ ├── SectionPresenter.swift │ │ │ │ ├── SectionView.swift │ │ │ │ └── SectionWireframe.swift │ │ │ ├── SecureField │ │ │ │ ├── SecureFieldInterfaces.swift │ │ │ │ ├── SecureFieldPresenter.swift │ │ │ │ ├── SecureFieldView.swift │ │ │ │ └── SecureFieldWireframe.swift │ │ │ ├── SegmentedControl │ │ │ │ ├── SegmentedContolView.swift │ │ │ │ ├── SegmentedControlInterfaces.swift │ │ │ │ ├── SegmentedControlPresenter.swift │ │ │ │ └── SegmentedControlWireframe.swift │ │ │ ├── Shadow │ │ │ │ ├── ShadowInterfaces.swift │ │ │ │ ├── ShadowPresenter.swift │ │ │ │ ├── ShadowView.swift │ │ │ │ └── ShadowWirefrsme.swift │ │ │ ├── Sheet │ │ │ │ ├── BottomSheetViewController.swift │ │ │ │ ├── SheetInterfaces.swift │ │ │ │ ├── SheetPresenter.swift │ │ │ │ ├── SheetView.swift │ │ │ │ └── SheetWireframe.swift │ │ │ ├── Slider │ │ │ │ ├── SliderInterfaces.swift │ │ │ │ ├── SliderPresenter.swift │ │ │ │ ├── SliderView.swift │ │ │ │ └── SliderWireframe.swift │ │ │ ├── State │ │ │ │ ├── StateInterfaces.swift │ │ │ │ ├── StatePresenter.swift │ │ │ │ ├── StateView.swift │ │ │ │ └── StateWireframe.swift │ │ │ ├── Stepper │ │ │ │ ├── StepperInterfaces.swift │ │ │ │ ├── StepperPresenter.swift │ │ │ │ ├── StepperView.swift │ │ │ │ └── StepperWireframe.swift │ │ │ ├── TabView │ │ │ │ ├── TabInterfaces.swift │ │ │ │ ├── TabPresenter.swift │ │ │ │ ├── TabView.swift │ │ │ │ └── TabWireframe.swift │ │ │ ├── TapGesture │ │ │ │ ├── TapGestureInterfaces.swift │ │ │ │ ├── TapGestureView.swift │ │ │ │ ├── TapGestureWireframe.swift │ │ │ │ └── TapgesturePresenter.swift │ │ │ ├── Text │ │ │ │ ├── TextInteractor.swift │ │ │ │ ├── TextInterfaces.swift │ │ │ │ ├── TextPresenter.swift │ │ │ │ ├── TextView.swift │ │ │ │ └── TextWireframe.swift │ │ │ ├── TextField │ │ │ │ ├── TextFieldInterfaces.swift │ │ │ │ ├── TextFieldPresenter.swift │ │ │ │ ├── TextFieldView.swift │ │ │ │ └── TextFieldWireframe.swift │ │ │ ├── TimeLineView │ │ │ │ ├── TimeLineViewInterfaces.swift │ │ │ │ ├── TimeLineViewPresenter.swift │ │ │ │ ├── TimeLineViewView.swift │ │ │ │ └── TimeLineViewWireframe.swift │ │ │ ├── Toggle │ │ │ │ ├── ToggleInterfaces.swift │ │ │ │ ├── TogglePresenter.swift │ │ │ │ ├── ToggleView.swift │ │ │ │ └── ToggleWireframe.swift │ │ │ ├── Transaction │ │ │ │ ├── TransactionInterfaces.swift │ │ │ │ ├── TransactionPresenter.swift │ │ │ │ ├── TransactionView.swift │ │ │ │ └── TransactionWireframe.swift │ │ │ ├── Transition │ │ │ │ ├── TransitionInterfaces.swift │ │ │ │ ├── TransitionPresenter.swift │ │ │ │ ├── TransitionView.swift │ │ │ │ └── TransitionWireframe.swift │ │ │ ├── VStack │ │ │ │ ├── VStackInterfaces.swift │ │ │ │ ├── VStackPresenter.swift │ │ │ │ ├── VStackView.swift │ │ │ │ └── VStackWireframe.swift │ │ │ ├── VideoPlayer │ │ │ │ ├── VideoPlayerInterfaces.swift │ │ │ │ ├── VideoPlayerPresenter.swift │ │ │ │ ├── VideoPlayerView.swift │ │ │ │ └── VideoPlayerWireframe.swift │ │ │ ├── WithAnimation │ │ │ │ ├── WithAnimationInterfaces.swift │ │ │ │ ├── WithAnimationPresenter.swift │ │ │ │ ├── WithAnimationView.swift │ │ │ │ └── WithAnimationWireframe.swift │ │ │ └── ZStack │ │ │ │ ├── ZStackInterfaces.swift │ │ │ │ ├── ZStackPresenter.swift │ │ │ │ ├── ZStackView.swift │ │ │ │ └── ZStackWireframe.swift │ │ ├── HomeEntity.swift │ │ ├── HomeInteractor.swift │ │ ├── HomeInterfaces.swift │ │ ├── HomePresenter.swift │ │ ├── HomeView.swift │ │ └── HomeWireframe.swift │ └── Login │ │ ├── LoginInteractor.swift │ │ ├── LoginInterfaces.swift │ │ ├── LoginPresenter.swift │ │ ├── LoginView.swift │ │ └── LoginWireframe.swift │ ├── SwiftUI Setup │ ├── HostingNavigationController.swift │ └── LazyHostingViewController.swift │ └── VIPER │ ├── BaseWireframe.swift │ ├── FormatterInterface.swift │ ├── InteractorInterface.swift │ ├── PresenterInterface.swift │ ├── Progressable.swift │ └── ViewInterface.swift ├── Viper └── Template │ ├── SwiftUI-Viper-Demo │ ├── .DS_Store │ ├── DemoApp.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── DemoApp │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── Initializers │ │ ├── InitialWireframeInitializer.swift │ │ ├── Initializable.swift │ │ └── StartupInitializationBuilder.swift │ │ ├── Modules │ │ ├── Home │ │ │ ├── HomeInterfaces.swift │ │ │ ├── HomePresenter.swift │ │ │ ├── HomeView.swift │ │ │ └── HomeWireframe.swift │ │ └── Login │ │ │ ├── LoginInteractor.swift │ │ │ ├── LoginInterfaces.swift │ │ │ ├── LoginPresenter.swift │ │ │ ├── LoginView.swift │ │ │ └── LoginWireframe.swift │ │ ├── SwiftUI Setup │ │ ├── HostingNavigationController.swift │ │ └── LazyHostingViewController.swift │ │ └── VIPER │ │ ├── BaseWireframe.swift │ │ ├── FormatterInterface.swift │ │ ├── InteractorInterface.swift │ │ ├── PresenterInterface.swift │ │ ├── Progressable.swift │ │ └── ViewInterface.swift │ └── Viper x SwiftUI Guide.md ├── commits.md ├── contributors.json ├── contributors.md ├── pull_request_template.md ├── temp_readme_bottom.md └── temp_readme_top.md /Assets/AlertView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/AlertView.png -------------------------------------------------------------------------------- /Assets/CanvasView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/CanvasView.png -------------------------------------------------------------------------------- /Assets/DatePickerView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/DatePickerView.png -------------------------------------------------------------------------------- /Assets/HStackView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/HStackView.png -------------------------------------------------------------------------------- /Assets/ImageView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/ImageView.png -------------------------------------------------------------------------------- /Assets/NavigationStackView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/NavigationStackView.png -------------------------------------------------------------------------------- /Assets/ProgressView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/ProgressView.png -------------------------------------------------------------------------------- /Assets/SectionView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/SectionView.png -------------------------------------------------------------------------------- /Assets/StepperView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/StepperView.png -------------------------------------------------------------------------------- /Assets/SwiftCamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Assets/SwiftCamp.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/OneSignalNotificationServiceExtension/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSExtension 6 | 7 | NSExtensionPointIdentifier 8 | com.apple.usernotifications.service 9 | NSExtensionPrincipalClass 10 | $(PRODUCT_MODULE_NAME).NotificationService 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtension.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.com.masterfabric.campdev 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/ForgotPassword.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ForgotPassword.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/ForgotPassword.imageset/ForgotPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/ForgotPassword.imageset/ForgotPassword.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/SignupOne.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "SignupOne.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/SignupOne.imageset/SignupOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/SignupOne.imageset/SignupOne.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/TwoFA.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "TwoFA.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/TwoFA.imageset/TwoFA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Authentication/TwoFA.imageset/TwoFA.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Colors/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Colors/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "platform" : "ios", 6 | "size" : "1024x1024" 7 | } 8 | ], 9 | "info" : { 10 | "author" : "xcode", 11 | "version" : 1 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Data & Storage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Data & Storage/StorageAndData.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "StorageAndData.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Data & Storage/StorageAndData.imageset/StorageAndData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Data & Storage/StorageAndData.imageset/StorageAndData.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/facebookLogo.imageset/facebookLogo 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/facebookLogo.imageset/facebookLogo 1.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/facebookLogo.imageset/facebookLogo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/facebookLogo.imageset/facebookLogo 2.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/facebookLogo.imageset/facebookLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/facebookLogo.imageset/facebookLogo.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/githubLogo.imageset/githubLogo 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/githubLogo.imageset/githubLogo 1.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/githubLogo.imageset/githubLogo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/githubLogo.imageset/githubLogo 2.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/githubLogo.imageset/githubLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/githubLogo.imageset/githubLogo.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/googleLogo.imageset/googleLogo 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/googleLogo.imageset/googleLogo 1.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/googleLogo.imageset/googleLogo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/googleLogo.imageset/googleLogo 2.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/googleLogo.imageset/googleLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Logos/googleLogo.imageset/googleLogo.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingOne.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "onboarding1.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingOne.imageset/onboarding1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingOne.imageset/onboarding1.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingThree.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Onboarding3.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingThree.imageset/Onboarding3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingThree.imageset/Onboarding3.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingTwo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "onboarding2.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingTwo.imageset/onboarding2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/OnboardingTwo.imageset/onboarding2.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/Opening.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Opening.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/Opening.imageset/Opening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/Onboarding/Opening.imageset/Opening.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/ContactUs.imageset/ContactUs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/ContactUs.imageset/ContactUs.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/ContactUs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ContactUs.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/Security.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Security.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/Security.imageset/Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/Security.imageset/Security.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/SendFeedback.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "SendFeedback.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/SendFeedback.imageset/SendFeedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/SendFeedback.imageset/SendFeedback.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/UserActivityHistory.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "UserActivityHistory.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/UserActivityHistory.imageset/UserActivityHistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Assets.xcassets/User Management/UserActivityHistory.imageset/UserActivityHistory.png -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Components/CheckBox/CheckBoxEnum.swift: -------------------------------------------------------------------------------- 1 | enum CheckboxState { 2 | case checked 3 | case unchecked 4 | } 5 | 6 | enum CheckboxType { 7 | case square 8 | case circle 9 | } 10 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Components/CountryPicker/CountryPickerEnum.swift: -------------------------------------------------------------------------------- 1 | enum CountryPickerType { 2 | case flagOnly 3 | case flagWithCountryName 4 | case flagWithDialCode 5 | case flagWithCountryNameAndDialCode 6 | case custom 7 | } 8 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Components/SearchBar/SearchBarEnum.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | 4 | // Search matching behaviors 5 | public enum SearchType { 6 | 7 | // Search matches if the data contains the search text 8 | case contains 9 | 10 | // Search matches if the data begins with the search text 11 | case beginsWith 12 | 13 | // Search matches if the data ends with the search text 14 | case endsWith 15 | 16 | } 17 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Components/Toggle/ToggleEnum.swift: -------------------------------------------------------------------------------- 1 | enum ToggleState { 2 | case on 3 | case off 4 | 5 | var label: String { 6 | switch self { 7 | case .on: 8 | return "ON" 9 | case .off: 10 | return "OFF" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/CustomTheme.json: -------------------------------------------------------------------------------- 1 | { 2 | "black": "#9B4DCA", 3 | "white": "#2C1810", 4 | "darkGray": "#E6D72A", 5 | "softGray": "#16A5A5", 6 | "lightGray": "#FF6B6B", 7 | "powderBlue": "#8B1A60", 8 | "blue": "#50FA7B", 9 | "successColor": "#FF79C6", 10 | "warningColor": "#BD93F9" 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Helpers/UniversalLinkHelper.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import UIKit 3 | 4 | struct UniversalLinkHelper { 5 | static func openURL(_ urlString: String) { 6 | guard let url = URL(string: urlString) else { 7 | print("Invalid URL: \(urlString)") 8 | return 9 | } 10 | 11 | UIApplication.shared.open(url, options: [:]) { success in 12 | if !success { 13 | print("Cannot open URL: \(urlString)") 14 | } 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Initializers/Initializable.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | protocol Initializable { 4 | 5 | func initialize() 6 | 7 | } 8 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Languages/ar-AE.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Languages/es.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Languages/he.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Languages/tr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Languages/ur-IN.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Languages/ur-PK.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Languages/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Modules/Home/HomeInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol HomeWireframeInterface: WireframeInterface { 4 | func goBack() 5 | func navigateToLoginPage() 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/Modules/Login/LoginInterfaces.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | protocol LoginWireframeInterface: WireframeInterface { 4 | func goBack() 5 | func navigateToHome() 6 | 7 | } 8 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/ar-AE.xcloc/Source Contents/SwiftCampDevs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "SwiftCampDevs"; 3 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/ar-AE.xcloc/contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "developmentRegion" : "en", 3 | "project" : "SwiftCampDevs.xcodeproj", 4 | "targetLocale" : "ar-AE", 5 | "toolInfo" : { 6 | "toolBuildNumber" : "16C5032a", 7 | "toolID" : "com.apple.dt.xcode", 8 | "toolName" : "Xcode", 9 | "toolVersion" : "16.2" 10 | }, 11 | "version" : "1.0" 12 | } -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/en.xcloc/Source Contents/SwiftCampDevs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "SwiftCampDevs"; 3 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/en.xcloc/contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "developmentRegion" : "en", 3 | "project" : "SwiftCampDevs.xcodeproj", 4 | "targetLocale" : "en", 5 | "toolInfo" : { 6 | "toolBuildNumber" : "16C5032a", 7 | "toolID" : "com.apple.dt.xcode", 8 | "toolName" : "Xcode", 9 | "toolVersion" : "16.2" 10 | }, 11 | "version" : "1.0" 12 | } -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/es.xcloc/Source Contents/SwiftCampDevs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "SwiftCampDevs"; 3 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/es.xcloc/contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "developmentRegion" : "en", 3 | "project" : "SwiftCampDevs.xcodeproj", 4 | "targetLocale" : "es", 5 | "toolInfo" : { 6 | "toolBuildNumber" : "16C5032a", 7 | "toolID" : "com.apple.dt.xcode", 8 | "toolName" : "Xcode", 9 | "toolVersion" : "16.2" 10 | }, 11 | "version" : "1.0" 12 | } -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/he.xcloc/Source Contents/SwiftCampDevs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "SwiftCampDevs"; 3 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/he.xcloc/contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "developmentRegion" : "en", 3 | "project" : "SwiftCampDevs.xcodeproj", 4 | "targetLocale" : "he", 5 | "toolInfo" : { 6 | "toolBuildNumber" : "16C5032a", 7 | "toolID" : "com.apple.dt.xcode", 8 | "toolName" : "Xcode", 9 | "toolVersion" : "16.2" 10 | }, 11 | "version" : "1.0" 12 | } -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/tr.xcloc/Source Contents/SwiftCampDevs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "SwiftCampDevs"; 3 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/tr.xcloc/contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "developmentRegion" : "en", 3 | "project" : "SwiftCampDevs.xcodeproj", 4 | "targetLocale" : "tr", 5 | "toolInfo" : { 6 | "toolBuildNumber" : "16C5032a", 7 | "toolID" : "com.apple.dt.xcode", 8 | "toolName" : "Xcode", 9 | "toolVersion" : "16.2" 10 | }, 11 | "version" : "1.0" 12 | } -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/ur-IN.xcloc/Source Contents/SwiftCampDevs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "SwiftCampDevs"; 3 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/ur-IN.xcloc/contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "developmentRegion" : "en", 3 | "project" : "SwiftCampDevs.xcodeproj", 4 | "targetLocale" : "ur-IN", 5 | "toolInfo" : { 6 | "toolBuildNumber" : "16C5032a", 7 | "toolID" : "com.apple.dt.xcode", 8 | "toolName" : "Xcode", 9 | "toolVersion" : "16.2" 10 | }, 11 | "version" : "1.0" 12 | } -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/ur-PK.xcloc/Source Contents/SwiftCampDevs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "SwiftCampDevs"; 3 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/ur-PK.xcloc/contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "developmentRegion" : "en", 3 | "project" : "SwiftCampDevs.xcodeproj", 4 | "targetLocale" : "ur-PK", 5 | "toolInfo" : { 6 | "toolBuildNumber" : "16C5032a", 7 | "toolID" : "com.apple.dt.xcode", 8 | "toolName" : "Xcode", 9 | "toolVersion" : "16.2" 10 | }, 11 | "version" : "1.0" 12 | } -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/zh-Hans.xcloc/Source Contents/SwiftCampDevs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "SwiftCampDevs"; 3 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/SwiftCampDevs Localizations/zh-Hans.xcloc/contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "developmentRegion" : "en", 3 | "project" : "SwiftCampDevs.xcodeproj", 4 | "targetLocale" : "zh-Hans", 5 | "toolInfo" : { 6 | "toolBuildNumber" : "16C5032a", 7 | "toolID" : "com.apple.dt.xcode", 8 | "toolName" : "Xcode", 9 | "toolVersion" : "16.2" 10 | }, 11 | "version" : "1.0" 12 | } -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/VIPER/FormatterInterface.swift: -------------------------------------------------------------------------------- 1 | protocol FormatterInterface: AnyObject { 2 | } 3 | 4 | extension FormatterInterface { 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/VIPER/InteractorInterface.swift: -------------------------------------------------------------------------------- 1 | protocol InteractorInterface: AnyObject { 2 | } 3 | 4 | extension InteractorInterface { 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/VIPER/PresenterInterface.swift: -------------------------------------------------------------------------------- 1 | protocol PresenterInterface: AnyObject { 2 | } 3 | 4 | extension PresenterInterface { 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/Swift-Camp-Devs/SwiftCampDevs/VIPER/ViewInterface.swift: -------------------------------------------------------------------------------- 1 | protocol ViewInterface: AnyObject { 2 | } 3 | 4 | extension ViewInterface { 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/MFSCamp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/MFSCamp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/OneSignalNotificationServiceExtension/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSExtension 6 | 7 | NSExtensionPointIdentifier 8 | com.apple.usernotifications.service 9 | NSExtensionPrincipalClass 10 | $(PRODUCT_MODULE_NAME).NotificationService 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/OneSignalNotificationServiceExtension/OneSignalNotificationServiceExtensionRelease.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | com.apple.security.application-groups 8 | 9 | group.com.masterfabric.swift.onesignal 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalCore { 2 | umbrella header "OneSignalCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/OneSignalCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/OneSignalCore -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/OneSignalCore: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalCore -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalCore { 2 | umbrella header "OneSignalCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/OneSignalCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/OneSignalCore -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalCore { 2 | umbrella header "OneSignalCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/OneSignalCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-simulator/OneSignalCore.framework/OneSignalCore -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalExtension { 2 | umbrella header "OneSignalExtension.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/OneSignalExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64/OneSignalExtension.framework/OneSignalExtension -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/OneSignalExtension: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalExtension -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalExtension { 2 | umbrella header "OneSignalExtension.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Versions/A/OneSignalExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Versions/A/OneSignalExtension -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalExtension.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalExtension { 2 | umbrella header "OneSignalExtension.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/OneSignalExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Extension/OneSignalExtension.xcframework/ios-arm64_x86_64-simulator/OneSignalExtension.framework/OneSignalExtension -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalInAppMessages { 2 | umbrella header "OneSignalInAppMessages.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/OneSignalInAppMessages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64/OneSignalInAppMessages.framework/OneSignalInAppMessages -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/OneSignalInAppMessages: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalInAppMessages -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalInAppMessages { 2 | umbrella header "OneSignalInAppMessages.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/A/OneSignalInAppMessages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/A/OneSignalInAppMessages -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalInAppMessages.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalInAppMessages { 2 | umbrella header "OneSignalInAppMessages.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/OneSignalInAppMessages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_InAppMessages/OneSignalInAppMessages.xcframework/ios-arm64_x86_64-simulator/OneSignalInAppMessages.framework/OneSignalInAppMessages -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Modules/OneSignalLiveActivities.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Modules/OneSignalLiveActivities.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalLiveActivities { 2 | umbrella header "OneSignalLiveActivities.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalLiveActivities.Swift { 9 | header "OneSignalLiveActivities-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/OneSignalLiveActivities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64/OneSignalLiveActivities.framework/OneSignalLiveActivities -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/OneSignalLiveActivities: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalLiveActivities -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalLiveActivities { 2 | umbrella header "OneSignalLiveActivities.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalLiveActivities.Swift { 9 | header "OneSignalLiveActivities-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/OneSignalLiveActivities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/A/OneSignalLiveActivities -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLiveActivities.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalLiveActivities { 2 | umbrella header "OneSignalLiveActivities.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalLiveActivities.Swift { 9 | header "OneSignalLiveActivities-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/OneSignalLiveActivities: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_LiveActivities/OneSignalLiveActivities.xcframework/ios-arm64_x86_64-simulator/OneSignalLiveActivities.framework/OneSignalLiveActivities -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64/OneSignalLocation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64/OneSignalLocation.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64/OneSignalLocation.framework/OneSignalLocation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64/OneSignalLocation.framework/OneSignalLocation -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/OneSignalLocation: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalLocation -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Versions/A/OneSignalLocation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Versions/A/OneSignalLocation -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalLocation.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-simulator/OneSignalLocation.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-simulator/OneSignalLocation.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-simulator/OneSignalLocation.framework/OneSignalLocation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Location/OneSignalLocation.xcframework/ios-arm64_x86_64-simulator/OneSignalLocation.framework/OneSignalLocation -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalNotifications { 2 | umbrella header "OneSignalNotifications.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/OneSignalNotifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64/OneSignalNotifications.framework/OneSignalNotifications -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/OneSignalNotifications: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalNotifications -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalNotifications { 2 | umbrella header "OneSignalNotifications.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/A/OneSignalNotifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/A/OneSignalNotifications -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalNotifications.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalNotifications { 2 | umbrella header "OneSignalNotifications.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/OneSignalNotifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Notifications/OneSignalNotifications.xcframework/ios-arm64_x86_64-simulator/OneSignalNotifications.framework/OneSignalNotifications -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOSCore { 2 | umbrella header "OneSignalOSCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalOSCore.Swift { 9 | header "OneSignalOSCore-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/OneSignalOSCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64/OneSignalOSCore.framework/OneSignalOSCore -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/OneSignalOSCore: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalOSCore -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOSCore { 2 | umbrella header "OneSignalOSCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalOSCore.Swift { 9 | header "OneSignalOSCore-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/OneSignalOSCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/A/OneSignalOSCore -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOSCore.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/OneSignalOSCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOSCore { 2 | umbrella header "OneSignalOSCore.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalOSCore.Swift { 9 | header "OneSignalOSCore-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/OneSignalOSCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_OSCore/OneSignalOSCore.xcframework/ios-arm64_x86_64-simulator/OneSignalOSCore.framework/OneSignalOSCore -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOutcomes { 2 | umbrella header "OneSignalOutcomes.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/OneSignalOutcomes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64/OneSignalOutcomes.framework/OneSignalOutcomes -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/OneSignalOutcomes: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalOutcomes -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOutcomes { 2 | umbrella header "OneSignalOutcomes.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/A/OneSignalOutcomes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/A/OneSignalOutcomes -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalOutcomes.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalOutcomes { 2 | umbrella header "OneSignalOutcomes.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/OneSignalOutcomes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_Outcomes/OneSignalOutcomes.xcframework/ios-arm64_x86_64-simulator/OneSignalOutcomes.framework/OneSignalOutcomes -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalUser { 2 | umbrella header "OneSignalUser.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalUser.Swift { 9 | header "OneSignalUser-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/OneSignalUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64/OneSignalUser.framework/OneSignalUser -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/OneSignalUser: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalUser -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/OneSignalUser.swiftmodule/arm64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/OneSignalUser.swiftmodule/arm64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/OneSignalUser.swiftmodule/x86_64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/OneSignalUser.swiftmodule/x86_64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalUser { 2 | umbrella header "OneSignalUser.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalUser.Swift { 9 | header "OneSignalUser-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/OneSignalUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/A/OneSignalUser -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalUser.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/OneSignalUser.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalUser { 2 | umbrella header "OneSignalUser.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalUser.Swift { 9 | header "OneSignalUser-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/OneSignalUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_User/OneSignalUser.xcframework/ios-arm64_x86_64-simulator/OneSignalUser.framework/OneSignalUser -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework.zip -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Modules/OneSignalFramework.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Modules/OneSignalFramework.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalFramework { 2 | umbrella header "OneSignalFramework.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalFramework.Swift { 9 | header "OneSignalFramework-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/OneSignalFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64/OneSignalFramework.framework/OneSignalFramework -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/OneSignalFramework: -------------------------------------------------------------------------------- 1 | Versions/Current/OneSignalFramework -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalFramework { 2 | umbrella header "OneSignalFramework.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalFramework.Swift { 9 | header "OneSignalFramework-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/OneSignalFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/A/OneSignalFramework -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalFramework.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Info.plist -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module OneSignalFramework { 2 | umbrella header "OneSignalFramework.h" 3 | export * 4 | 5 | module * { export * } 6 | } 7 | 8 | module OneSignalFramework.Swift { 9 | header "OneSignalFramework-Swift.h" 10 | requires objc 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/OneSignalFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/Pods/OneSignal/iOS_SDK/OneSignalSDK/OneSignal_XCFramework/OneSignalFramework.xcframework/ios-arm64_x86_64-simulator/OneSignalFramework.framework/OneSignalFramework -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/NavigationView.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "NavigationView.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/NavigationView.imageset/NavigationView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/NavigationView.imageset/NavigationView.png -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/anitkabir_image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "anitkabir_image.jpeg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/anitkabir_image.imageset/anitkabir_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/anitkabir_image.imageset/anitkabir_image.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ata1.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "ata1 1.jpg", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "ata1 2.jpg", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata1.imageset/ata1 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata1.imageset/ata1 1.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata1.imageset/ata1 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata1.imageset/ata1 2.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata1.imageset/ata1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata1.imageset/ata1.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ata2.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "ata2 1.jpg", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "ata2 2.jpg", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata2.imageset/ata2 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata2.imageset/ata2 1.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata2.imageset/ata2 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata2.imageset/ata2 2.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata2.imageset/ata2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata2.imageset/ata2.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ata3.jpeg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "ata3 1.jpeg", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "ata3 2.jpeg", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata3.imageset/ata3 1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata3.imageset/ata3 1.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata3.imageset/ata3 2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata3.imageset/ata3 2.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata3.imageset/ata3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata3.imageset/ata3.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ata4.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "ata4 1.jpg", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "ata4 2.jpg", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata4.imageset/ata4 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata4.imageset/ata4 1.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata4.imageset/ata4 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata4.imageset/ata4 2.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata4.imageset/ata4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata4.imageset/ata4.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ata5.jpeg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "ata5 1.jpeg", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "ata5 2.jpeg", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata5.imageset/ata5 1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata5.imageset/ata5 1.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata5.imageset/ata5 2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata5.imageset/ata5 2.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata5.imageset/ata5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata5.imageset/ata5.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ata6.jpeg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "ata6 1.jpeg", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "ata6 2.jpeg", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata6.imageset/ata6 1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata6.imageset/ata6 1.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata6.imageset/ata6 2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata6.imageset/ata6 2.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata6.imageset/ata6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/ata6.imageset/ata6.jpeg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/exampleImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "exampleImage.jpg", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/exampleImage.imageset/exampleImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Assets.xcassets/exampleImage.imageset/exampleImage.jpg -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/DemoApp.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | 8 | 9 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/DemoAppRelease.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | com.apple.security.application-groups 8 | 9 | group.com.masterfabric.swift.onesignal 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDisplayName 6 | MFSCamp 7 | ITSAppUsesNonExemptEncryption 8 | 9 | UIBackgroundModes 10 | 11 | remote-notification 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Initializers/Initializable.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | protocol Initializable { 4 | 5 | func initialize() 6 | 7 | } 8 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ActionSheet/ActionSheetInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol ActionSheetWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ActionSheet/ActionSheetPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class ActionSheetPresenter: ObservableObject { 5 | 6 | // MARK: - Private properties - 7 | private let wireframe: ActionSheetWireframeInterface 8 | 9 | // MARK: - Lifecycle - 10 | init(wireframe: ActionSheetWireframeInterface) { 11 | self.wireframe = wireframe 12 | } 13 | 14 | func goBack() { 15 | wireframe.goBack() 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Alert/AlertInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | 4 | protocol AlertWireframeInterface: WireframeInterface { 5 | func goBack() 6 | } 7 | 8 | 9 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Alert/AlertPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class AlertPresenter: ObservableObject { 5 | 6 | // MARK: - Private properties - 7 | private let wireframe: AlertWireframeInterface 8 | 9 | // MARK: - Lifecycle - 10 | init(wireframe: AlertWireframeInterface) { 11 | self.wireframe = wireframe 12 | } 13 | 14 | func goBack() { 15 | wireframe.goBack() 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Animation/AnimationInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol AnimationWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Animation/AnimationPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class AnimationPresenter : ObservableObject { 5 | 6 | private let wireframe : AnimationWireframeInterface 7 | 8 | init (wireframe : AnimationWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/AnyView/AnyViewInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol AnyViewWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/AttributedText/AttributedTextInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol AttributedTextWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/AttributedText/AttributedTextPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class AttributedTextPresenter : ObservableObject { 5 | 6 | private let wireframe : AttributedTextWireframeInterface 7 | 8 | init (wireframe : AttributedTextWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Background/BackgroundInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol BackgroundWireframeInterface: WireframeInterface{ 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Background/BackgroundPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class BackgroundPresenter: ObservableObject { 4 | private let wireframe: BackgroundWireframeInterface 5 | 6 | init(wireframe: BackgroundWireframeInterface) { 7 | self.wireframe = wireframe 8 | } 9 | func goBack() { 10 | wireframe.goBack() 11 | } 12 | } 13 | 14 | 15 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Binding/BindingInterfaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | protocol BindingWireframeInterface: WireframeInterface { 4 | 5 | func goBack() 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Binding/BindingPresenter.swift: -------------------------------------------------------------------------------- 1 | 2 | import Combine 3 | 4 | final class BindingPresenter: ObservableObject { 5 | 6 | private let wireframe: BindingWireframeInterface 7 | 8 | init(wireframe: BindingWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Button/ButtonInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol ButtonWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Button/ButtonPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class ButtonPresenter : ObservableObject { 5 | 6 | private let wireframe : ButtonWireframeInterface 7 | 8 | init (wireframe : ButtonWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Canvas/CanvasInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol CanvasWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Capsule/CapsuleInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol CapsuleWireframeInterface{ 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Capsule/CapsulePresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class CapsulePresenter: ObservableObject { 4 | private let wireframe: CapsuleWireframeInterface 5 | 6 | init (wireframe: CapsuleWireframeInterface){ 7 | self.wireframe = wireframe 8 | } 9 | 10 | func goBack(){ 11 | wireframe.goBack() 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Circle/CircleInterfaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | protocol CircleWireframeInterface: WireframeInterface { 4 | 5 | func goBack() 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Circle/CirclePresenter.swift: -------------------------------------------------------------------------------- 1 | 2 | import Combine 3 | 4 | final class CirclePresenter: ObservableObject { 5 | 6 | private let wireframe: CircleWireframeInterface 7 | 8 | init(wireframe: CircleWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ColoPicker/ColorPickerInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol ColorPickerWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ConfirmationDialog/ConfirmationDialogInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol ConfirmationDialogWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ContentView/ContentInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol ContentWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ContextMenu/ContextMenuInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol ContextMenuWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | 5 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/CornerRadius/CornerRadiusInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol CornerRadiusWireframeInterface: WireframeInterface{ 2 | 3 | func goBack() 4 | } 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/CornerRadius/CornerRadiusPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class CornerRadiusPresenter: ObservableObject { 4 | private let wireframe: CornerRadiusWireframeInterface 5 | 6 | init(wireframe: CornerRadiusWireframeInterface) { 7 | self.wireframe = wireframe 8 | } 9 | 10 | func goBack() { 11 | wireframe.goBack() 12 | 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/CustomShape/CustomShapeHostingController.swift: -------------------------------------------------------------------------------- 1 | import SwiftUI 2 | 3 | class CustomShapeHostingController: UIHostingController { 4 | required init?(coder: NSCoder) { 5 | super.init(coder: coder, rootView: CustomShapeView()) 6 | } 7 | 8 | init() { 9 | super.init(rootView: CustomShapeView()) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/CustomShape/CustomShapeInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol MyCustomShapeViewProtocol { 2 | func displayShape() 3 | func goBack() 4 | } 5 | 6 | protocol MyCustomShapePresenterProtocol: AnyObject { 7 | func viewDidLoad() 8 | } 9 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/CustomShape/CustomShapePresenter.swift: -------------------------------------------------------------------------------- 1 | class CustomShapePresenter: MyCustomShapePresenterProtocol { 2 | var view: MyCustomShapeViewProtocol? 3 | 4 | init(view: MyCustomShapeViewProtocol?) { 5 | self.view = view 6 | } 7 | 8 | func viewDidLoad() { 9 | view?.displayShape() 10 | } 11 | 12 | func goBack() { 13 | view?.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/DatePicker/DatePickerInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol DatePickerWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/DatePicker/DatePickerPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class DatePickerPresenter : ObservableObject { 5 | 6 | private let wireframe : DatePickerWireframeInterface 7 | 8 | init (wireframe : DatePickerWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Divider/DividerInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol DividerWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Divider/DividerPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import SwiftUI 3 | 4 | final class DividerPresenter: ObservableObject { 5 | 6 | // MARK: - Properties 7 | 8 | private let wireframe: DividerWireframeInterface 9 | 10 | // MARK: - Lifecycle 11 | 12 | init(wireframe: DividerWireframeInterface) { 13 | self.wireframe = wireframe 14 | } 15 | 16 | // MARK: - Navigation 17 | 18 | func goBack() { 19 | wireframe.goBack() 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/DragGesture/DragGestureInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol DragGestureWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/DragGesture/DragGesturePresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class DragGesturePresenter: ObservableObject { 5 | 6 | // MARK: - Private properties - 7 | private let wireframe: DragGestureWireframeInterface 8 | 9 | // MARK: - Lifecycle - 10 | init(wireframe: DragGestureWireframeInterface) { 11 | self.wireframe = wireframe 12 | } 13 | 14 | func goBack() { 15 | wireframe.goBack() 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Ellipse/EllipseInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol EllipseWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Environment/EnvironmentInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol EnvironmentWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Environment/EnvironmentPresenter.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Foundation 3 | import Combine 4 | 5 | final class EnvironmentPresenter: ObservableObject { 6 | 7 | private let wireframe: EnvironmentWireframeInterface 8 | 9 | init(wireframe: EnvironmentWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/EnvironmentObject/EnvironmentObjectInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol EnvironmentObjectWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ForegroundColor/ForegroundColorInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol ForegroundColorWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Form/FormInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol FormWireframeInterface: WireframeInterface { 2 | 3 | func goBack() 4 | } 5 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Form/FormPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class FormPresenter: ObservableObject { 5 | 6 | private let wireframe: FormWireframeInterface 7 | 8 | init(wireframe: FormWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Frame/FrameInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol FrameWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/GeometryReader/GeometryReaderInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol GeometryReaderWireframeInterface: WireframeInterface{ 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/GeometryReader/GeometryReaderPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class GeometryReaderPresenter: ObservableObject { 4 | 5 | private let wireframe: GeometryReaderWireframeInterface 6 | 7 | init(wireframe: GeometryReaderWireframeInterface) { 8 | self.wireframe = wireframe 9 | 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Grid/GridInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol GridWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/GridRow/GridRowInterfaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | protocol GridRowWireframeInterface: WireframeInterface { 4 | 5 | func goBack() 6 | } 7 | 8 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/GridRow/GridRowPresenter.swift: -------------------------------------------------------------------------------- 1 | 2 | import Combine 3 | 4 | final class GridRowPresenter: ObservableObject { 5 | 6 | private let wireframe: GridRowWireframeInterface 7 | 8 | init(wireframe: GridRowWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Group/GroupInterfaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | protocol GroupWireframeInterface: WireframeInterface { 4 | 5 | func goBack() 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Group/GroupPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class GroupPresenter: ObservableObject { 5 | 6 | private let wireframe: GroupWireframeInterface 7 | 8 | init(wireframe: GroupWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/GroupBox/GroupBoxInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol GroupBoxWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/HStack/HStackInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol HStackWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/HStack/HStackPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class HStackPresenter: ObservableObject { 5 | 6 | // MARK: - Private properties - 7 | private let wireframe: HStackWireframeInterface 8 | 9 | // MARK: - Lifecycle - 10 | init(wireframe: HStackWireframeInterface) { 11 | self.wireframe = wireframe 12 | } 13 | 14 | func goBack() { 15 | wireframe.goBack() 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Image/ImageInterFaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | protocol ImageWireframeInterface: WireframeInterface { 4 | 5 | func goBack() 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Image/ImagePresenter.swift: -------------------------------------------------------------------------------- 1 | 2 | import Combine 3 | 4 | final class ImagePresenter: ObservableObject { 5 | 6 | private let wireframe: ImageWireframeInterface 7 | 8 | init(wireframe: ImageWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Label/LabelInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol LabelWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Label/LabelPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class LabelPresenter: ObservableObject { 5 | 6 | private let wireframe: LabelWireframeInterface 7 | 8 | init(wireframe: LabelWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LazyHGrid/LazyHGridInterfaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | protocol LazyHGridWireframeInterface: WireframeInterface { 4 | 5 | func goBack() 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LazyHGrid/LazyHGridPresenter.swift: -------------------------------------------------------------------------------- 1 | 2 | import Combine 3 | 4 | final class LazyHGridPresenter: ObservableObject { 5 | 6 | private let wireframe: LazyHGridWireframeInterface 7 | 8 | init(wireframe: LazyHGridWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LazyHStack/LazyHStackInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol LazyHStackWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LazyHStack/LazyHStackPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | 5 | final class LazyHStackPresenter: ObservableObject { 6 | 7 | private let wireframe: LazyHStackWireframeInterface 8 | 9 | init(wireframe: LazyHStackWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LazyVGrid/LazyVGridInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol LazyVGridWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LazyVGrid/LazyVGridPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class LazyVGridPresenter:ObservableObject { 4 | 5 | private let wireframe: LazyVGridWireframeInterface 6 | 7 | init(wireframe: LazyVGridWireframeInterface) { 8 | self.wireframe = wireframe 9 | } 10 | 11 | func goBack(){ 12 | wireframe.goBack() 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LazyVStack/LazyVStackInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol LazyVStackWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Link/LinkWireframeInterface.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol LinkWireframeInterface: WireframeInterface { 4 | func goBack() 5 | func navigateToNewLink() 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/List/ListInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol ListWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/List/ListPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class ListPresenter: ObservableObject { 5 | 6 | // MARK: - Private properties - 7 | private let wireframe: ListWireframeInterface 8 | 9 | // MARK: - Lifecycle - 10 | init(wireframe: ListWireframeInterface) { 11 | self.wireframe = wireframe 12 | } 13 | 14 | func goBack() { 15 | wireframe.goBack() 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LongPressGesture/LongPressGestureInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol LongPressGestureWireframeInterface : WireframeInterface{ 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/LongPressGesture/LongPressGesturePresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class LongPressGesturePresenter : ObservableObject { 5 | 6 | private let wireframe : LongPressGestureWireframeInterface 7 | 8 | init (wireframe : LongPressGestureWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/MagnificationGesture/MagnificationGestureInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol MagnificationGestureWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Map/MapInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol MapWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Map/MapPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class MapPresenter : ObservableObject { 5 | 6 | private let wireframe :MapWireframeInterface 7 | 8 | init (wireframe : MapWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/MatchedGeometryEffect/MatchedGeometryEffectInterface.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol MatchedGeometryEffectWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/MenuButton/MenuButtonInterfaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | protocol MenuButtonWireframeInterface: WireframeInterface { 4 | 5 | func goBack() 6 | } 7 | 8 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/MenuButton/MenuButtonPresenter.swift: -------------------------------------------------------------------------------- 1 | 2 | import Combine 3 | 4 | final class MenuButtonPresenter: ObservableObject { 5 | 6 | private let wireframe: MenuButtonWireframeInterface 7 | 8 | init(wireframe: MenuButtonWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/NavigationStack/NavigationStackInterface.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol NavigationStackWireframeInterface:WireframeInterface{ 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/NavigationView/NavigationInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol NavigationWireframeInterface : WireframeInterface{ 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/NavigationView/NavigationPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class NavigationPresenter : ObservableObject { 5 | 6 | private let wireframe : NavigationWireframeInterface 7 | 8 | init (wireframe : NavigationWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ObservedObject/ObservedObjectEntity.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | struct ObservedObjectEntity { 4 | var value: Int = 0 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ObservedObject/ObservedObjectInteractor.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | class ObservedObjectInteractor: ObservedObjectInteractorInterface { 4 | private var counter = ObservedObjectEntity() 5 | 6 | func incrementCounter() { 7 | counter.value = counter.value + 1 8 | } 9 | 10 | func getValue() -> Int { 11 | return counter.value 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ObservedObject/ObservedObjectInterfaces.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import SwiftUICore 3 | 4 | // function interfaces 5 | 6 | protocol ObservedObjectWireframeInterface { 7 | func goBack() 8 | } 9 | 10 | protocol ObservedObjectInteractorInterface { 11 | func incrementCounter() 12 | func getValue() -> Int 13 | } 14 | 15 | protocol ObservedObjectPresenterInterface { 16 | var counterValue: Int { get } 17 | func isIncrementButtonClicked() 18 | } 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Offset/OffsetInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol OffsetWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Offset/OffsetPresenter.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Foundation 3 | import Combine 4 | 5 | final class OffsetPresenter: ObservableObject { 6 | 7 | private let wireframe: OffsetWireframeInterface 8 | 9 | init(wireframe: OffsetWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Opacity/OpacityInterfaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | protocol OpacityWireframeInterface: WireframeInterface { 5 | 6 | func goBack() 7 | } 8 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Opacity/OpacityPresenter.swift: -------------------------------------------------------------------------------- 1 | 2 | import Combine 3 | 4 | final class OpacityPresenter: ObservableObject { 5 | 6 | private let wireframe: OpacityWireframeInterface 7 | 8 | init(wireframe: OpacityWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Padding/PaddingInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol PaddingWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | 5 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Padding/PaddingPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import SwiftUI 3 | 4 | final class PaddingPresenter: ObservableObject { 5 | 6 | // MARK: - Properties 7 | 8 | private let wireframe: PaddingWireframeInterface 9 | 10 | // MARK: - Lifecycle 11 | 12 | init(wireframe: PaddingWireframeInterface) { 13 | self.wireframe = wireframe 14 | } 15 | 16 | // MARK: - Navigation 17 | 18 | func goBack() { 19 | wireframe.goBack() 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Path/PathInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol PathWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Path/PathPresenter.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Foundation 3 | import Combine 4 | 5 | final class PathPresenter: ObservableObject { 6 | 7 | private let wireframe: PathWireframeInterface 8 | 9 | init(wireframe: PathWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | 18 | 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Picker/PickerInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol PickerWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Popover/PopoverInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol PopoverWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Popover/PopoverPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import SwiftUI 3 | 4 | final class PopoverPresenter: ObservableObject { 5 | 6 | // MARK: - Properties 7 | 8 | private let wireframe: PopoverWireframeInterface 9 | 10 | // MARK: - Lifecycle 11 | 12 | init(wireframe: PopoverWireframeInterface) { 13 | self.wireframe = wireframe 14 | } 15 | 16 | // MARK: - Navigation 17 | 18 | func goBack() { 19 | wireframe.goBack() 20 | } 21 | } -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ProgressIndicator/ProgressIndicatorInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol ProgressIndicatorWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ProgressIndicator/ProgressIndicatorPresenter.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Foundation 3 | import Combine 4 | 5 | final class ProgressIndicatorPresenter: ObservableObject { 6 | 7 | private let wireframe: ProgressIndicatorWireframeInterface 8 | 9 | init(wireframe: ProgressIndicatorWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ProgressScreen/ProgressInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol ProgressWireframeInterface: WireframeInterface { 2 | 3 | func goBack() 4 | } 5 | 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ProgressScreen/ProgressPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class ProgressPresenter: ObservableObject { 4 | private let wireframe: ProgressWireframeInterface 5 | 6 | init(wireframe: ProgressWireframeInterface){ 7 | self.wireframe = wireframe 8 | } 9 | 10 | func goBack() { 11 | wireframe.goBack() 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Rectangle/RectangleInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol RectangleWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/RotationEffect/RotationEffectInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol RotationEffectWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/RotationGesture/RotationGestureInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol RotationGestureWireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/RotationGesture/RotationGesturePresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class RotationGesturePresenter: ObservableObject{ 4 | private let wireframe: RotationGestureWireframeInterface 5 | init(wireframe: RotationGestureWireframeInterface){ 6 | self.wireframe = wireframe 7 | } 8 | 9 | func goBack(){ 10 | wireframe.goBack() 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/RoundedRectangle/RoundedRectangleInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol RoundedRectangleWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/RoundedRectangle/RoundedRectanglePresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class RoundedRectanglePresenter : ObservableObject { 5 | 6 | private let wireframe : RoundedRectangleWireframeInterface 7 | 8 | init (wireframe : RoundedRectangleWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ScaleEffect/ScaleEffectInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol ScaleEffectWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ScaleEffect/ScaleEffectPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class ScaleEffectPresenter : ObservableObject { 5 | 6 | private let wireframe :ScaleEffectWireframeInterface 7 | 8 | init (wireframe : ScaleEffectWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ScrollView/ScrollViewInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol ScrollViewWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Section/SectionInteractor.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class SectionInteractor: SectionInteractorInterface { 4 | func fetchSections() -> [String] { 5 | // Örnek veri 6 | return ["Section 1", "Section 2", "Section 3", "Section 4"] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Section/SectionInterfaces.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | protocol SectionWireframeInterface: AnyObject { 4 | func goBack() 5 | } 6 | 7 | protocol SectionInteractorInterface: AnyObject { 8 | func fetchSections() -> [String] 9 | } 10 | 11 | protocol SectionPresenterInterface: AnyObject { 12 | var sections: [String] { get } 13 | var selectedSection: String? { get set } 14 | func loadSections() 15 | func selectSection(_ section: String) 16 | func goBack() 17 | } 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/SecureField/SecureFieldInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol SecureFieldWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/SegmentedControl/SegmentedControlInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol SegmentedControlWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/SegmentedControl/SegmentedControlPresenter.swift: -------------------------------------------------------------------------------- 1 | 2 | import Combine 3 | import Foundation 4 | 5 | final class SegmentedControlPresenter : ObservableObject { 6 | 7 | private let wireframe : SegmentedControlWireframeInterface 8 | 9 | init (wireframe : SegmentedControlWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Shadow/ShadowInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol ShadowWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Shadow/ShadowPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class ShadowPresenter : ObservableObject { 5 | 6 | private let wireframe : ShadowWireframeInterface 7 | 8 | init (wireframe : ShadowWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Sheet/SheetInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol SheetViewProtocol: AnyObject { 2 | func updateView(with data: String) 3 | } 4 | 5 | protocol SheetPresenterProtocol: AnyObject { 6 | func loadData() 7 | func showBottomSheet() 8 | func goBack() // Yeni eklenen geri navigasyon metodu 9 | } 10 | 11 | protocol SheetWireframeProtocol: AnyObject { 12 | func navigateToNextScreen() 13 | func presentBottomSheet() 14 | func navigateBack() // Yeni eklenen geri navigasyon metodu 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Slider/SliderInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol SliderWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Slider/SliderPresenter.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Foundation 3 | import Combine 4 | 5 | final class SliderPresenter: ObservableObject { 6 | 7 | private let wireframe: SliderWireframeInterface 8 | 9 | init(wireframe: SliderWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/State/StateInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol StateWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/State/StatePresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import SwiftUI 3 | 4 | final class StatePresenter: ObservableObject { 5 | 6 | // MARK: - Private properties 7 | private let wireframe: StateWireframeInterface 8 | 9 | // MARK: - Lifecycle 10 | init(wireframe: StateWireframeInterface) { 11 | self.wireframe = wireframe 12 | } 13 | 14 | // MARK: - Navigation 15 | func goBack() { 16 | wireframe.goBack() 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Stepper/StepperInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol StepperWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/TabView/TabInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol TabWireframeInterface : WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/TabView/TabPresenter.swift: -------------------------------------------------------------------------------- 1 | import Combine 2 | import Foundation 3 | 4 | final class TabPresenter : ObservableObject { 5 | 6 | private let wireframe : TabWireframeInterface 7 | 8 | init (wireframe : TabWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/TapGesture/TapGestureInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol TapGestureWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Text/TextInteractor.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class TextInteractor: TextInteractorInterface { 4 | func fetchText() -> String { 5 | // Örnek metin 6 | return "Hello, SwiftUI VIPER Architecture!" 7 | } 8 | } 9 | 10 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Text/TextInterfaces.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | protocol TextWireframeInterface: AnyObject { 4 | func goBack() 5 | } 6 | 7 | protocol TextInteractorInterface: AnyObject { 8 | func fetchText() -> String 9 | } 10 | 11 | protocol TextPresenterInterface: AnyObject { 12 | var displayedText: String { get } 13 | func loadText() 14 | func goBack() 15 | } 16 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/TextField/TextFieldInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol TextFieldWireframeInterface:WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/TextField/TextFieldPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class TextFieldPresenter:ObservableObject { 4 | private let wireframe: TextFieldWireframeInterface 5 | 6 | init(wireframe: TextFieldWireframeInterface) { 7 | self.wireframe = wireframe 8 | } 9 | 10 | func goBack() { 11 | wireframe.goBack() 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/TimeLineView/TimeLineViewInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol TimeLineViewWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/TimeLineView/TimeLineViewPresenter.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Foundation 3 | import Combine 4 | 5 | final class TimeLineViewPresenter: ObservableObject { 6 | 7 | private let wireframe: TimeLineViewWireframeInterface 8 | 9 | init(wireframe: TimeLineViewWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Toggle/ToggleInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol ToggleWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Transaction/TransactionInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol TransactionWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/Transition/TransitionInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol TransitionWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/VStack/VStackInterfaces.swift: -------------------------------------------------------------------------------- 1 | 2 | 3 | protocol VStackWireframeInterface: WireframeInterface { 4 | 5 | func goBack() 6 | } 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/VStack/VStackPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class VStackPresenter: ObservableObject { 5 | 6 | private let wireframe: VStackWireframeInterface 7 | 8 | init(wireframe: VStackWireframeInterface) { 9 | self.wireframe = wireframe 10 | } 11 | 12 | func goBack() { 13 | wireframe.goBack() 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/VideoPlayer/VideoPlayerInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol VideoPlayerWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | 7 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/VideoPlayer/VideoPlayerPresenter.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Foundation 3 | import Combine 4 | 5 | final class VideoPlayerPresenter: ObservableObject { 6 | 7 | private let wireframe: VideoPlayerWireframeInterface 8 | 9 | init(wireframe: VideoPlayerWireframeInterface) { 10 | self.wireframe = wireframe 11 | } 12 | 13 | func goBack() { 14 | wireframe.goBack() 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/WithAnimation/WithAnimationInterfaces.swift: -------------------------------------------------------------------------------- 1 | protocol WithAnimationWireframeInterface: WireframeInterface { 2 | func goBack() 3 | } 4 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ZStack/ZStackInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol ZStackWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Home/Components/ZStack/ZStackPresenter.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import Combine 3 | 4 | final class ZStackPresenter: ObservableObject { 5 | 6 | // MARK: - Private properties - 7 | private let wireframe: ZStackWireframeInterface 8 | 9 | // MARK: - Lifecycle - 10 | init(wireframe: ZStackWireframeInterface) { 11 | self.wireframe = wireframe 12 | } 13 | 14 | func goBack() { 15 | wireframe.goBack() 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Login/LoginInteractor.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class LoginInteractor { 4 | } 5 | 6 | // MARK: - Extensions - 7 | 8 | extension LoginInteractor: LoginInteractorInterface { 9 | 10 | func login(with email: String) { 11 | // do something 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/Modules/Login/LoginInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol LoginWireframeInterface: WireframeInterface { 4 | func showHomeScreen(email: String) 5 | } 6 | 7 | protocol LoginInteractorInterface: InteractorInterface { 8 | func login(with email: String) 9 | } 10 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/VIPER/FormatterInterface.swift: -------------------------------------------------------------------------------- 1 | protocol FormatterInterface: AnyObject { 2 | } 3 | 4 | extension FormatterInterface { 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/VIPER/InteractorInterface.swift: -------------------------------------------------------------------------------- 1 | protocol InteractorInterface: AnyObject { 2 | } 3 | 4 | extension InteractorInterface { 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/VIPER/PresenterInterface.swift: -------------------------------------------------------------------------------- 1 | protocol PresenterInterface: AnyObject { 2 | } 3 | 4 | extension PresenterInterface { 5 | } 6 | -------------------------------------------------------------------------------- /SwiftUI/SwiftUI-Components-App/SwiftComponentsApp/VIPER/ViewInterface.swift: -------------------------------------------------------------------------------- 1 | protocol ViewInterface: AnyObject { 2 | } 3 | 4 | extension ViewInterface { 5 | } 6 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterfabric-mobile/swift_camp/13afc57df384e654ba9bf5cfbff7cf33b7a53ce3/Viper/Template/SwiftUI-Viper-Demo/.DS_Store -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- 1 | { 2 | "pins" : [ 3 | { 4 | "identity" : "rxswift", 5 | "kind" : "remoteSourceControl", 6 | "location" : "https://github.com/ReactiveX/RxSwift", 7 | "state" : { 8 | "revision" : "b4307ba0b6425c0ba4178e138799946c3da594f8", 9 | "version" : "6.5.0" 10 | } 11 | } 12 | ], 13 | "version" : 2 14 | } 15 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "platform" : "ios", 6 | "size" : "1024x1024" 7 | } 8 | ], 9 | "info" : { 10 | "author" : "xcode", 11 | "version" : 1 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/Initializers/Initializable.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | protocol Initializable { 4 | 5 | func initialize() 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/Modules/Home/HomeInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol HomeWireframeInterface: WireframeInterface { 4 | func goBack() 5 | } 6 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/Modules/Login/LoginInteractor.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | final class LoginInteractor { 4 | } 5 | 6 | // MARK: - Extensions - 7 | 8 | extension LoginInteractor: LoginInteractorInterface { 9 | 10 | func login(with email: String) { 11 | // do something 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/Modules/Login/LoginInterfaces.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | 3 | protocol LoginWireframeInterface: WireframeInterface { 4 | func showHomeScreen(email: String) 5 | } 6 | 7 | protocol LoginInteractorInterface: InteractorInterface { 8 | func login(with email: String) 9 | } 10 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/VIPER/FormatterInterface.swift: -------------------------------------------------------------------------------- 1 | protocol FormatterInterface: AnyObject { 2 | } 3 | 4 | extension FormatterInterface { 5 | } 6 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/VIPER/InteractorInterface.swift: -------------------------------------------------------------------------------- 1 | protocol InteractorInterface: AnyObject { 2 | } 3 | 4 | extension InteractorInterface { 5 | } 6 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/VIPER/PresenterInterface.swift: -------------------------------------------------------------------------------- 1 | protocol PresenterInterface: AnyObject { 2 | } 3 | 4 | extension PresenterInterface { 5 | } 6 | -------------------------------------------------------------------------------- /Viper/Template/SwiftUI-Viper-Demo/DemoApp/VIPER/ViewInterface.swift: -------------------------------------------------------------------------------- 1 | protocol ViewInterface: AnyObject { 2 | } 3 | 4 | extension ViewInterface { 5 | } 6 | --------------------------------------------------------------------------------