├── .github ├── FUNDING.yml └── workflows │ └── unit-tests.yml ├── .gitignore ├── DemoPackages ├── CustomHorizontalCollection │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CustomHorizontalCollection.xcscheme │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── CustomHorizontalCollection │ │ │ ├── ChipsCollectionView.swift │ │ │ └── Models.swift │ └── Tests │ │ └── CustomHorizontalCollectionTests │ │ ├── ChipCollectionModelTests.swift │ │ └── ChipCollectionModelXCTests.swift ├── DeeplinkParser │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── DeeplinkParser │ │ │ ├── DeeplinkParameters.swift │ │ │ └── DeeplinkParser.swift │ └── Tests │ │ └── DeeplinkParserTests │ │ ├── DeeplinkParametersTests.swift │ │ └── DeeplinkParserTests.swift ├── ProtocolForView │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ └── Sources │ │ ├── PFVImplementation │ │ ├── BadDemoViewProviderImp.swift │ │ ├── DemoView.swift │ │ └── GoodDemoViewProviderImp.swift │ │ └── PFVInterface │ │ ├── BadDemoViewProvider.swift │ │ └── GoodDemoViewProvider.swift └── VpnChecker │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── VpnChecker │ │ └── VpnChecker.swift │ └── Tests │ └── VpnCheckerTests │ └── VpnCheckerTests.swift ├── LICENSE ├── README.md ├── Shared SwiftUI Content.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── Shared SwiftUI Content.xcscheme └── xcuserdata │ └── oleg991.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Shared SwiftUI Content ├── 100_ScenePhaseExample.swift ├── 104_EasyAlertExample.swift ├── 106_SearchableBugExample.swift ├── 107_CheckVpnExample.swift ├── 108_NestedViewModelExample.swift ├── 10_LazyVGridExample.swift ├── 110_AddToCalendarExample.swift ├── 111_MapSnapshotExample.swift ├── 112_OnTapGestureExample.swift ├── 116_CameraAccessExample.swift ├── 117_ChangeAppIconExample.swift ├── 118_ContentTransitionExample.swift ├── 119_TrackSwiftDataExample.swift ├── 11_ToggleListExample.swift ├── 120_NotificationBadgeExample.swift ├── 121_CustomNotificationExample.swift ├── 126_AppStorageCustomTypeExample.swift ├── 129_AttributedStringExample.swift ├── 12_SafeAreaExample.swift ├── 134_SheetRotationBugDemo.swift ├── 13_VerticalPagingView.swift ├── 14_RoundedCornerShape.swift ├── 15_ScrollViewOffset.swift ├── 16_OverlayPreferenceKeyExample.swift ├── 17_DisableUserInteractionExample.swift ├── 18_MultipleSheetsView.swift ├── 19_StrikeThroughExample.swift ├── 1_UIKitTextViewExample.swift ├── 20_ViewWithTaskExample.swift ├── 21_FillVSForegroundColorExample.swift ├── 22_ProgressBarExample.swift ├── 23_HorizontalCollectionFirstExample.swift ├── 24_SwitchCaseAnimationExample.swift ├── 25_CancelTaskExample.swift ├── 26_TextEditorPlaceholderExample.swift ├── 27_BindingGetSetExample.swift ├── 28_TabViewFilledIconExample.swift ├── 29_PluralsLocalizationExample.swift ├── 30_PrintChangesExample.swift ├── 31_BackButtonTitleExample.swift ├── 35_TransitionExample.swift ├── 36_ThirdPartyDeeplinkExample.swift ├── 37_LoadingIndicatorModifierExample.swift ├── 39_CustomHeightSheetExample.swift ├── 3_CustomSecureFieldExample.swift ├── 40_ZoomableViewExample.swift ├── 41_ToastViewExample.swift ├── 42_NavigationExample_1 │ ├── Extensions │ │ ├── Binding+.swift │ │ └── NavigationLink+.swift │ ├── NVAppViewModel.swift │ └── Screens │ │ ├── NVAuthorizeScreen.swift │ │ ├── NVBookmarksScreen.swift │ │ ├── NVErrorScreen.swift │ │ ├── NVMainScreen.swift │ │ ├── NVProfileScreen.swift │ │ ├── NVRootScreen.swift │ │ └── NVSettingsScreen.swift ├── 43_NavigationExample_2 │ ├── NSAppViewModel.swift │ └── Screens │ │ ├── NSAuthorizeScreen.swift │ │ ├── NSBookmarksScreen.swift │ │ ├── NSErrorScreen.swift │ │ ├── NSMainScreen.swift │ │ ├── NSProfileScreen.swift │ │ ├── NSRootScreen.swift │ │ └── NSSettingsScreen.swift ├── 44_NavigationExample_3 │ ├── TVHomeScreen.swift │ ├── TVRootScreen.swift │ └── TVSettingsScreen.swift ├── 45_LoggerExample.swift ├── 47_ShadowExample.swift ├── 48_BlurExample.swift ├── 49_ReadSizeExample.swift ├── 4_UIKitViewDidAppear.swift ├── 50_OnboardingExample │ ├── Onboarding+ │ │ ├── SUIOnboarding+ItemModel.swift │ │ ├── SUIOnboarding+MaskFramePreferenceKey.swift │ │ ├── SUIOnboarding+OverlayViewModifier.swift │ │ ├── SUIOnboarding+TooltipModel.swift │ │ ├── SUIOnboarding+TooltipShape.swift │ │ ├── SUIOnboarding+TooltipView.swift │ │ └── SUIOnboarding+TooltipViewModifier.swift │ └── OnboardingExample.swift ├── 52_SkeletonExample │ ├── SkeletonExample.swift │ ├── SkeletonModifier+Mode.swift │ ├── SkeletonModifier+NeedReloadView.swift │ ├── SkeletonModifier.swift │ └── View+skeleton.swift ├── 53_HTMLExample.swift ├── 54_UIKitPreviewExample.swift ├── 56_ScrollToExample.swift ├── 57_MaskedFieldExample.swift ├── 58_BackgroundTaskExample.swift ├── 5_TextWithLinkExample.swift ├── 60_EquatableExample.swift ├── 61_MatchedGeometryEffectExample.swift ├── 62_DrawingAndCompositingGroupExample.swift ├── 63_ScrollTargetExample.swift ├── 65_ConditionalModifierExample.swift ├── 66_ViewThatFitsExample.swift ├── 71_ClippedShadowExample.swift ├── 72_OnVisibilityChangeExample.swift ├── 73_ScrollViewDidEndScrollingExample.swift ├── 75_ContrastTextExample.swift ├── 79_DebounceExample.swift ├── 7_SafariVCExample.swift ├── 80_AnimatedSpacingExample.swift ├── 81_EmptyViewExample.swift ├── 82_RefreshableExample.swift ├── 83_LinkExample.swift ├── 85_CustomTabbarExample.swift ├── 86_NotificationCenterExample.swift ├── 88_OnAppearOnDisappearExample.swift ├── 89_TaskWeakSelfExample.swift ├── 8_PickImageExample.swift ├── 90_HideViewExample.swift ├── 91_AssemblyProtocolExample.swift ├── 92_DemoHorizontalCollection.swift ├── 93_VideoPlayerExample.swift ├── 95_DeeplinkParserExample.swift ├── 97_DemoDisableScrollView.swift ├── 98_UIHostingControllerExample.swift ├── 99_ContainerRelativeFrameExample.swift ├── 9_ColorThemeService.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 51740599-2.png │ │ └── Contents.json │ ├── AppIconBird.appiconset │ │ ├── AppIconCat.png │ │ └── Contents.json │ ├── AppIconSwift.appiconset │ │ ├── AppIconFox.png │ │ └── Contents.json │ ├── Contents.json │ ├── SmallAppIcons │ │ ├── BirdAppIcon.imageset │ │ │ ├── Contents.json │ │ │ └── swift_bird.png │ │ ├── Contents.json │ │ ├── DefaultAppIcon.imageset │ │ │ ├── 51740599-2.png │ │ │ └── Contents.json │ │ └── SwiftAppIcon.imageset │ │ │ ├── Contents.json │ │ │ └── swift-og.png │ ├── cardBackground.colorset │ │ └── Contents.json │ ├── loadingIndicator.imageset │ │ ├── Contents.json │ │ └── loading.svg │ ├── swift.imageset │ │ ├── Contents.json │ │ └── swift-og.png │ ├── swift_bird.imageset │ │ ├── Contents.json │ │ └── swift_bird.png │ └── swift_dark.imageset │ │ ├── Contents.json │ │ └── swift_dark.png ├── BorderVsStrokeBorder.swift ├── DrawingGroupAnimationExample.swift ├── Localization │ ├── InfoPlist.xcstrings │ └── Localizable.xcstrings ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Shared-SwiftUI-Content-Info.plist ├── Shared_SwiftUI_ContentApp.swift └── TestPlan.xctestplan └── UnitTests └── UserSettingsTests.swift /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/.gitignore -------------------------------------------------------------------------------- /DemoPackages/CustomHorizontalCollection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/CustomHorizontalCollection/.gitignore -------------------------------------------------------------------------------- /DemoPackages/CustomHorizontalCollection/.swiftpm/xcode/xcshareddata/xcschemes/CustomHorizontalCollection.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/CustomHorizontalCollection/.swiftpm/xcode/xcshareddata/xcschemes/CustomHorizontalCollection.xcscheme -------------------------------------------------------------------------------- /DemoPackages/CustomHorizontalCollection/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/CustomHorizontalCollection/Package.swift -------------------------------------------------------------------------------- /DemoPackages/CustomHorizontalCollection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/CustomHorizontalCollection/README.md -------------------------------------------------------------------------------- /DemoPackages/CustomHorizontalCollection/Sources/CustomHorizontalCollection/ChipsCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/CustomHorizontalCollection/Sources/CustomHorizontalCollection/ChipsCollectionView.swift -------------------------------------------------------------------------------- /DemoPackages/CustomHorizontalCollection/Sources/CustomHorizontalCollection/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/CustomHorizontalCollection/Sources/CustomHorizontalCollection/Models.swift -------------------------------------------------------------------------------- /DemoPackages/CustomHorizontalCollection/Tests/CustomHorizontalCollectionTests/ChipCollectionModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/CustomHorizontalCollection/Tests/CustomHorizontalCollectionTests/ChipCollectionModelTests.swift -------------------------------------------------------------------------------- /DemoPackages/CustomHorizontalCollection/Tests/CustomHorizontalCollectionTests/ChipCollectionModelXCTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/CustomHorizontalCollection/Tests/CustomHorizontalCollectionTests/ChipCollectionModelXCTests.swift -------------------------------------------------------------------------------- /DemoPackages/DeeplinkParser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/DeeplinkParser/.gitignore -------------------------------------------------------------------------------- /DemoPackages/DeeplinkParser/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/DeeplinkParser/Package.swift -------------------------------------------------------------------------------- /DemoPackages/DeeplinkParser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/DeeplinkParser/README.md -------------------------------------------------------------------------------- /DemoPackages/DeeplinkParser/Sources/DeeplinkParser/DeeplinkParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/DeeplinkParser/Sources/DeeplinkParser/DeeplinkParameters.swift -------------------------------------------------------------------------------- /DemoPackages/DeeplinkParser/Sources/DeeplinkParser/DeeplinkParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/DeeplinkParser/Sources/DeeplinkParser/DeeplinkParser.swift -------------------------------------------------------------------------------- /DemoPackages/DeeplinkParser/Tests/DeeplinkParserTests/DeeplinkParametersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/DeeplinkParser/Tests/DeeplinkParserTests/DeeplinkParametersTests.swift -------------------------------------------------------------------------------- /DemoPackages/DeeplinkParser/Tests/DeeplinkParserTests/DeeplinkParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/DeeplinkParser/Tests/DeeplinkParserTests/DeeplinkParserTests.swift -------------------------------------------------------------------------------- /DemoPackages/ProtocolForView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/ProtocolForView/.gitignore -------------------------------------------------------------------------------- /DemoPackages/ProtocolForView/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/ProtocolForView/Package.swift -------------------------------------------------------------------------------- /DemoPackages/ProtocolForView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/ProtocolForView/README.md -------------------------------------------------------------------------------- /DemoPackages/ProtocolForView/Sources/PFVImplementation/BadDemoViewProviderImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/ProtocolForView/Sources/PFVImplementation/BadDemoViewProviderImp.swift -------------------------------------------------------------------------------- /DemoPackages/ProtocolForView/Sources/PFVImplementation/DemoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/ProtocolForView/Sources/PFVImplementation/DemoView.swift -------------------------------------------------------------------------------- /DemoPackages/ProtocolForView/Sources/PFVImplementation/GoodDemoViewProviderImp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/ProtocolForView/Sources/PFVImplementation/GoodDemoViewProviderImp.swift -------------------------------------------------------------------------------- /DemoPackages/ProtocolForView/Sources/PFVInterface/BadDemoViewProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/ProtocolForView/Sources/PFVInterface/BadDemoViewProvider.swift -------------------------------------------------------------------------------- /DemoPackages/ProtocolForView/Sources/PFVInterface/GoodDemoViewProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/ProtocolForView/Sources/PFVInterface/GoodDemoViewProvider.swift -------------------------------------------------------------------------------- /DemoPackages/VpnChecker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/VpnChecker/.gitignore -------------------------------------------------------------------------------- /DemoPackages/VpnChecker/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/VpnChecker/Package.swift -------------------------------------------------------------------------------- /DemoPackages/VpnChecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/VpnChecker/README.md -------------------------------------------------------------------------------- /DemoPackages/VpnChecker/Sources/VpnChecker/VpnChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/VpnChecker/Sources/VpnChecker/VpnChecker.swift -------------------------------------------------------------------------------- /DemoPackages/VpnChecker/Tests/VpnCheckerTests/VpnCheckerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/DemoPackages/VpnChecker/Tests/VpnCheckerTests/VpnCheckerTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/README.md -------------------------------------------------------------------------------- /Shared SwiftUI Content.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Shared SwiftUI Content.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Shared SwiftUI Content.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Shared SwiftUI Content.xcodeproj/xcshareddata/xcschemes/Shared SwiftUI Content.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content.xcodeproj/xcshareddata/xcschemes/Shared SwiftUI Content.xcscheme -------------------------------------------------------------------------------- /Shared SwiftUI Content.xcodeproj/xcuserdata/oleg991.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content.xcodeproj/xcuserdata/oleg991.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Shared SwiftUI Content/100_ScenePhaseExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/100_ScenePhaseExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/104_EasyAlertExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/104_EasyAlertExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/106_SearchableBugExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/106_SearchableBugExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/107_CheckVpnExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/107_CheckVpnExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/108_NestedViewModelExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/108_NestedViewModelExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/10_LazyVGridExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/10_LazyVGridExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/110_AddToCalendarExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/110_AddToCalendarExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/111_MapSnapshotExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/111_MapSnapshotExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/112_OnTapGestureExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/112_OnTapGestureExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/116_CameraAccessExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/116_CameraAccessExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/117_ChangeAppIconExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/117_ChangeAppIconExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/118_ContentTransitionExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/118_ContentTransitionExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/119_TrackSwiftDataExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/119_TrackSwiftDataExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/11_ToggleListExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/11_ToggleListExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/120_NotificationBadgeExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/120_NotificationBadgeExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/121_CustomNotificationExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/121_CustomNotificationExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/126_AppStorageCustomTypeExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/126_AppStorageCustomTypeExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/129_AttributedStringExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/129_AttributedStringExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/12_SafeAreaExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/12_SafeAreaExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/134_SheetRotationBugDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/134_SheetRotationBugDemo.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/13_VerticalPagingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/13_VerticalPagingView.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/14_RoundedCornerShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/14_RoundedCornerShape.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/15_ScrollViewOffset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/15_ScrollViewOffset.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/16_OverlayPreferenceKeyExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/16_OverlayPreferenceKeyExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/17_DisableUserInteractionExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/17_DisableUserInteractionExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/18_MultipleSheetsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/18_MultipleSheetsView.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/19_StrikeThroughExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/19_StrikeThroughExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/1_UIKitTextViewExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/1_UIKitTextViewExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/20_ViewWithTaskExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/20_ViewWithTaskExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/21_FillVSForegroundColorExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/21_FillVSForegroundColorExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/22_ProgressBarExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/22_ProgressBarExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/23_HorizontalCollectionFirstExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/23_HorizontalCollectionFirstExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/24_SwitchCaseAnimationExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/24_SwitchCaseAnimationExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/25_CancelTaskExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/25_CancelTaskExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/26_TextEditorPlaceholderExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/26_TextEditorPlaceholderExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/27_BindingGetSetExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/27_BindingGetSetExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/28_TabViewFilledIconExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/28_TabViewFilledIconExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/29_PluralsLocalizationExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/29_PluralsLocalizationExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/30_PrintChangesExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/30_PrintChangesExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/31_BackButtonTitleExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/31_BackButtonTitleExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/35_TransitionExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/35_TransitionExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/36_ThirdPartyDeeplinkExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/36_ThirdPartyDeeplinkExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/37_LoadingIndicatorModifierExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/37_LoadingIndicatorModifierExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/39_CustomHeightSheetExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/39_CustomHeightSheetExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/3_CustomSecureFieldExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/3_CustomSecureFieldExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/40_ZoomableViewExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/40_ZoomableViewExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/41_ToastViewExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/41_ToastViewExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Extensions/Binding+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Extensions/Binding+.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Extensions/NavigationLink+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Extensions/NavigationLink+.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/NVAppViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/NVAppViewModel.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Screens/NVAuthorizeScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Screens/NVAuthorizeScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Screens/NVBookmarksScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Screens/NVBookmarksScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Screens/NVErrorScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Screens/NVErrorScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Screens/NVMainScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Screens/NVMainScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Screens/NVProfileScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Screens/NVProfileScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Screens/NVRootScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Screens/NVRootScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/42_NavigationExample_1/Screens/NVSettingsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/42_NavigationExample_1/Screens/NVSettingsScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/43_NavigationExample_2/NSAppViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/43_NavigationExample_2/NSAppViewModel.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/43_NavigationExample_2/Screens/NSAuthorizeScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/43_NavigationExample_2/Screens/NSAuthorizeScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/43_NavigationExample_2/Screens/NSBookmarksScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/43_NavigationExample_2/Screens/NSBookmarksScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/43_NavigationExample_2/Screens/NSErrorScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/43_NavigationExample_2/Screens/NSErrorScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/43_NavigationExample_2/Screens/NSMainScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/43_NavigationExample_2/Screens/NSMainScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/43_NavigationExample_2/Screens/NSProfileScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/43_NavigationExample_2/Screens/NSProfileScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/43_NavigationExample_2/Screens/NSRootScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/43_NavigationExample_2/Screens/NSRootScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/43_NavigationExample_2/Screens/NSSettingsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/43_NavigationExample_2/Screens/NSSettingsScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/44_NavigationExample_3/TVHomeScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/44_NavigationExample_3/TVHomeScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/44_NavigationExample_3/TVRootScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/44_NavigationExample_3/TVRootScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/44_NavigationExample_3/TVSettingsScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/44_NavigationExample_3/TVSettingsScreen.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/45_LoggerExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/45_LoggerExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/47_ShadowExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/47_ShadowExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/48_BlurExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/48_BlurExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/49_ReadSizeExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/49_ReadSizeExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/4_UIKitViewDidAppear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/4_UIKitViewDidAppear.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+ItemModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+ItemModel.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+MaskFramePreferenceKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+MaskFramePreferenceKey.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+OverlayViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+OverlayViewModifier.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+TooltipModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+TooltipModel.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+TooltipShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+TooltipShape.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+TooltipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+TooltipView.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+TooltipViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/50_OnboardingExample/Onboarding+/SUIOnboarding+TooltipViewModifier.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/50_OnboardingExample/OnboardingExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/50_OnboardingExample/OnboardingExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/52_SkeletonExample/SkeletonExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/52_SkeletonExample/SkeletonExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/52_SkeletonExample/SkeletonModifier+Mode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/52_SkeletonExample/SkeletonModifier+Mode.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/52_SkeletonExample/SkeletonModifier+NeedReloadView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/52_SkeletonExample/SkeletonModifier+NeedReloadView.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/52_SkeletonExample/SkeletonModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/52_SkeletonExample/SkeletonModifier.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/52_SkeletonExample/View+skeleton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/52_SkeletonExample/View+skeleton.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/53_HTMLExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/53_HTMLExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/54_UIKitPreviewExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/54_UIKitPreviewExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/56_ScrollToExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/56_ScrollToExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/57_MaskedFieldExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/57_MaskedFieldExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/58_BackgroundTaskExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/58_BackgroundTaskExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/5_TextWithLinkExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/5_TextWithLinkExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/60_EquatableExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/60_EquatableExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/61_MatchedGeometryEffectExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/61_MatchedGeometryEffectExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/62_DrawingAndCompositingGroupExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/62_DrawingAndCompositingGroupExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/63_ScrollTargetExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/63_ScrollTargetExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/65_ConditionalModifierExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/65_ConditionalModifierExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/66_ViewThatFitsExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/66_ViewThatFitsExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/71_ClippedShadowExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/71_ClippedShadowExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/72_OnVisibilityChangeExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/72_OnVisibilityChangeExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/73_ScrollViewDidEndScrollingExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/73_ScrollViewDidEndScrollingExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/75_ContrastTextExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/75_ContrastTextExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/79_DebounceExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/79_DebounceExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/7_SafariVCExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/7_SafariVCExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/80_AnimatedSpacingExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/80_AnimatedSpacingExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/81_EmptyViewExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/81_EmptyViewExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/82_RefreshableExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/82_RefreshableExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/83_LinkExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/83_LinkExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/85_CustomTabbarExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/85_CustomTabbarExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/86_NotificationCenterExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/86_NotificationCenterExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/88_OnAppearOnDisappearExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/88_OnAppearOnDisappearExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/89_TaskWeakSelfExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/89_TaskWeakSelfExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/8_PickImageExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/8_PickImageExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/90_HideViewExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/90_HideViewExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/91_AssemblyProtocolExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/91_AssemblyProtocolExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/92_DemoHorizontalCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/92_DemoHorizontalCollection.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/93_VideoPlayerExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/93_VideoPlayerExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/95_DeeplinkParserExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/95_DeeplinkParserExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/97_DemoDisableScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/97_DemoDisableScrollView.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/98_UIHostingControllerExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/98_UIHostingControllerExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/99_ContainerRelativeFrameExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/99_ContainerRelativeFrameExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/9_ColorThemeService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/9_ColorThemeService.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/AppIcon.appiconset/51740599-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/AppIcon.appiconset/51740599-2.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/AppIconBird.appiconset/AppIconCat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/AppIconBird.appiconset/AppIconCat.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/AppIconBird.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/AppIconBird.appiconset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/AppIconSwift.appiconset/AppIconFox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/AppIconSwift.appiconset/AppIconFox.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/AppIconSwift.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/AppIconSwift.appiconset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/BirdAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/BirdAppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/BirdAppIcon.imageset/swift_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/BirdAppIcon.imageset/swift_bird.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/DefaultAppIcon.imageset/51740599-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/DefaultAppIcon.imageset/51740599-2.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/DefaultAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/DefaultAppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/SwiftAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/SwiftAppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/SwiftAppIcon.imageset/swift-og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/SmallAppIcons/SwiftAppIcon.imageset/swift-og.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/cardBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/cardBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/loadingIndicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/loadingIndicator.imageset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/loadingIndicator.imageset/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/loadingIndicator.imageset/loading.svg -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/swift.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/swift.imageset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/swift.imageset/swift-og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/swift.imageset/swift-og.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/swift_bird.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/swift_bird.imageset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/swift_bird.imageset/swift_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/swift_bird.imageset/swift_bird.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/swift_dark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/swift_dark.imageset/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Assets.xcassets/swift_dark.imageset/swift_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Assets.xcassets/swift_dark.imageset/swift_dark.png -------------------------------------------------------------------------------- /Shared SwiftUI Content/BorderVsStrokeBorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/BorderVsStrokeBorder.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/DrawingGroupAnimationExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/DrawingGroupAnimationExample.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/Localization/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Localization/InfoPlist.xcstrings -------------------------------------------------------------------------------- /Shared SwiftUI Content/Localization/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Localization/Localizable.xcstrings -------------------------------------------------------------------------------- /Shared SwiftUI Content/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Shared SwiftUI Content/Shared-SwiftUI-Content-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Shared-SwiftUI-Content-Info.plist -------------------------------------------------------------------------------- /Shared SwiftUI Content/Shared_SwiftUI_ContentApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/Shared_SwiftUI_ContentApp.swift -------------------------------------------------------------------------------- /Shared SwiftUI Content/TestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/Shared SwiftUI Content/TestPlan.xctestplan -------------------------------------------------------------------------------- /UnitTests/UserSettingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydev991/Shared-SwiftUI-Content/HEAD/UnitTests/UserSettingsTests.swift --------------------------------------------------------------------------------