├── AnimationIndicatorView.swift ├── Base64ImageView.swift ├── ChatGptAnimation ├── ChatGptAnimation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── ganeshrajugalla.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ganeshrajugalla.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ChatGptAnimation │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ChatGptAnimationApp.swift │ ├── ContentView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── TypeWriterView.swift ├── CircularProgressBarView.swift ├── ClockView.swift ├── ColorClockView.swift ├── ContentUnavailableView.swift ├── ContentView.swift ├── ControlGroupMenuView.swift ├── CrossPlatformApp-main ├── Cross-Platform │ ├── Cross-Platform.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── ganesh.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── ganesh.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Cross-Platform │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── blackbeatle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── blackbeatle.jpg │ │ │ ├── bluedragonfly.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bluedragonfly.jpg │ │ │ ├── brownblackbutterfly.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── brownblackbutterfly.jpg │ │ │ ├── brownspider.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── brownspider.jpg │ │ │ ├── grasshopper.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── grasshopper.jpg │ │ │ ├── greenbrownfly.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── greenbrownfly.jpg │ │ │ ├── greenbug.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── greenbug.jpg │ │ │ └── honeybee.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── honeybee.jpg │ │ ├── Cross_PlatformApp.swift │ │ ├── Models │ │ │ ├── Insect.swift │ │ │ └── insectData.swift │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── Resource │ │ │ └── insectData.json │ │ └── View │ │ │ ├── ContentView.swift │ │ │ ├── InsectCellView.swift │ │ │ ├── InsectDetailView.swift │ │ │ └── InsectListView.swift │ ├── macOS-Cross-Platform │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── View │ │ │ ├── ContentView.swift │ │ │ ├── MacInsectCellView.swift │ │ │ └── MacInsectListView.swift │ │ ├── macOS_Cross_Platform.entitlements │ │ └── macOS_Cross_PlatformApp.swift │ └── watchOS-Cross-Platform Watch App │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── WatchInsectDetailView.swift │ │ └── watchOS_Cross_PlatformApp.swift └── README.md ├── CustomSliderView.swift ├── CustomTabBar ├── CustomTabBar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── ganeshrajugalla.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ganeshrajugalla.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── CustomTabBar │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── CustomTabBarApp.swift │ └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── CustomTabbarView.swift ├── DotDividerView.swift ├── DraggingPositionView.swift ├── DynamicLoader.swift ├── FidgetSpinnerView.swift ├── GlassmorphismView.swift ├── IconView.swift ├── InfiniteListView.swift ├── InsideShadowView.swift ├── ListBGView.swift ├── Loaders ├── Loaders.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── ganeshrajugalla.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ganeshrajugalla.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Loaders │ ├── ContentView.swift │ ├── LoadersApp.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resources │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ └── Contents.json │ └── Views │ ├── BounceLoader.swift │ ├── CircleLoader.swift │ └── DotLoader.swift ├── MetalUIBGView.swift ├── MovingCardView.swift ├── OvalShapeView.swift ├── PageableScrollView.swift ├── PhotosPickerSample ├── PhotosPickerSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── ganeshrajugalla.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ganeshrajugalla.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── PhotosPickerSample │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── PhotosPickerSampleApp.swift │ └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── README.md ├── RGBullsEye ├── RGBullsEye.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── ganesh.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ganesh.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── RGBullsEye │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ └── Contents.json │ ├── Contents.json │ ├── Neumorphism │ │ ├── Contents.json │ │ ├── Element.colorset │ │ │ └── Contents.json │ │ ├── Highlight.colorset │ │ │ └── Contents.json │ │ └── Shadow.colorset │ │ │ └── Contents.json │ └── launch-assets │ │ ├── Contents.json │ │ └── rw-bg.colorset │ │ └── Contents.json │ ├── BevelText.swift │ ├── ColorCircle.swift │ ├── ColorSlider.swift │ ├── ContentView.swift │ ├── Model │ ├── Color.swift │ ├── Game.swift │ └── RGB.swift │ ├── NeuButtonStyle.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── RGBullsEyeApp.swift │ └── ViewExtension.swift ├── RandomColorView.swift ├── RotationEffectView.swift ├── SafeAreaPadding.swift ├── ScaleEffectScrollTransition.swift ├── ScrollFromBottom.swift ├── ScrollPaging.swift ├── ScrollTransitionView.swift ├── ScrollTransitionsView.swift ├── SpinningIndicatorView.swift ├── StaggeredGrid ├── StaggeredGrid.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── ganesh.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ganesh.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── StaggeredGrid │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── image1.imageset │ │ ├── Contents.json │ │ └── image1.jpeg │ ├── image10.imageset │ │ ├── Contents.json │ │ └── image10.png │ ├── image11.imageset │ │ ├── Contents.json │ │ └── image11.jpeg │ ├── image12.imageset │ │ ├── Contents.json │ │ └── image12.jpeg │ ├── image13.imageset │ │ ├── Contents.json │ │ └── image13.jpeg │ ├── image14.imageset │ │ ├── Contents.json │ │ └── image14.jpeg │ ├── image15.imageset │ │ ├── Contents.json │ │ └── image15.jpeg │ ├── image16.imageset │ │ ├── Contents.json │ │ └── image16.png │ ├── image17.imageset │ │ ├── Contents.json │ │ └── image17.png │ ├── image18.imageset │ │ ├── Contents.json │ │ └── image18.jpeg │ ├── image19.imageset │ │ ├── Contents.json │ │ └── image19.jpeg │ ├── image2.imageset │ │ ├── Contents.json │ │ └── image2.jpeg │ ├── image20.imageset │ │ ├── Contents.json │ │ └── image20.jpeg │ ├── image21.imageset │ │ ├── Contents.json │ │ └── image21.jpeg │ ├── image22.imageset │ │ ├── Contents.json │ │ └── image22.jpeg │ ├── image23.imageset │ │ ├── Contents.json │ │ └── image23.jpeg │ ├── image24.imageset │ │ ├── Contents.json │ │ └── image24.png │ ├── image25.imageset │ │ ├── Contents.json │ │ └── image25.jpeg │ ├── image3.imageset │ │ ├── Contents.json │ │ └── Image3.jpeg │ ├── image4.imageset │ │ ├── Contents.json │ │ └── Image4.jpeg │ ├── image5.imageset │ │ ├── Contents.json │ │ └── image5.jpeg │ ├── image6.imageset │ │ ├── Contents.json │ │ └── image6.jpeg │ ├── image7.imageset │ │ ├── Contents.json │ │ └── image7.jpeg │ ├── image8.imageset │ │ ├── Contents.json │ │ └── image8.jpeg │ └── image9.imageset │ │ ├── Contents.json │ │ └── image9.jpeg │ ├── Model │ └── Post.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── StaggeredGridApp.swift │ └── View │ ├── ContentView.swift │ ├── Home.swift │ └── StaggeredGrid.swift ├── SystemSoundsView.swift ├── TabViewSample.swift ├── TextFieldAlert.swift ├── TikTok.swift ├── Timelapse.swift ├── ToolBarTitleMenu.swift ├── TwitterButton.swift └── ZoomEffect.swift /AnimationIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/AnimationIndicatorView.swift -------------------------------------------------------------------------------- /Base64ImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Base64ImageView.swift -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation.xcodeproj/project.xcworkspace/xcuserdata/ganeshrajugalla.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation.xcodeproj/project.xcworkspace/xcuserdata/ganeshrajugalla.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation.xcodeproj/xcuserdata/ganeshrajugalla.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation.xcodeproj/xcuserdata/ganeshrajugalla.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation/ChatGptAnimationApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation/ChatGptAnimationApp.swift -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation/ContentView.swift -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatGptAnimation/ChatGptAnimation/TypeWriterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ChatGptAnimation/ChatGptAnimation/TypeWriterView.swift -------------------------------------------------------------------------------- /CircularProgressBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CircularProgressBarView.swift -------------------------------------------------------------------------------- /ClockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ClockView.swift -------------------------------------------------------------------------------- /ColorClockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ColorClockView.swift -------------------------------------------------------------------------------- /ContentUnavailableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ContentUnavailableView.swift -------------------------------------------------------------------------------- /ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ContentView.swift -------------------------------------------------------------------------------- /ControlGroupMenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ControlGroupMenuView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/project.xcworkspace/xcuserdata/ganesh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/project.xcworkspace/xcuserdata/ganesh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/xcuserdata/ganesh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/xcuserdata/ganesh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/xcuserdata/ganesh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform.xcodeproj/xcuserdata/ganesh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/blackbeatle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/blackbeatle.imageset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/blackbeatle.imageset/blackbeatle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/blackbeatle.imageset/blackbeatle.jpg -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/bluedragonfly.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/bluedragonfly.imageset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/bluedragonfly.imageset/bluedragonfly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/bluedragonfly.imageset/bluedragonfly.jpg -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/brownblackbutterfly.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/brownblackbutterfly.imageset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/brownblackbutterfly.imageset/brownblackbutterfly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/brownblackbutterfly.imageset/brownblackbutterfly.jpg -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/brownspider.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/brownspider.imageset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/brownspider.imageset/brownspider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/brownspider.imageset/brownspider.jpg -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/grasshopper.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/grasshopper.imageset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/grasshopper.imageset/grasshopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/grasshopper.imageset/grasshopper.jpg -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/greenbrownfly.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/greenbrownfly.imageset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/greenbrownfly.imageset/greenbrownfly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/greenbrownfly.imageset/greenbrownfly.jpg -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/greenbug.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/greenbug.imageset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/greenbug.imageset/greenbug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/greenbug.imageset/greenbug.jpg -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/honeybee.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/honeybee.imageset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/honeybee.imageset/honeybee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Assets.xcassets/honeybee.imageset/honeybee.jpg -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Cross_PlatformApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Cross_PlatformApp.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Models/Insect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Models/Insect.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Models/insectData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Models/insectData.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/Resource/insectData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/Resource/insectData.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/View/ContentView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/View/InsectCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/View/InsectCellView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/View/InsectDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/View/InsectDetailView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/Cross-Platform/View/InsectListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/Cross-Platform/View/InsectListView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/View/ContentView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/View/MacInsectCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/View/MacInsectCellView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/View/MacInsectListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/View/MacInsectListView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/macOS_Cross_Platform.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/macOS_Cross_Platform.entitlements -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/macOS_Cross_PlatformApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/macOS-Cross-Platform/macOS_Cross_PlatformApp.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/ContentView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/WatchInsectDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/WatchInsectDetailView.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/watchOS_Cross_PlatformApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/Cross-Platform/watchOS-Cross-Platform Watch App/watchOS_Cross_PlatformApp.swift -------------------------------------------------------------------------------- /CrossPlatformApp-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CrossPlatformApp-main/README.md -------------------------------------------------------------------------------- /CustomSliderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomSliderView.swift -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar.xcodeproj/project.xcworkspace/xcuserdata/ganeshrajugalla.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar.xcodeproj/project.xcworkspace/xcuserdata/ganeshrajugalla.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar.xcodeproj/xcuserdata/ganeshrajugalla.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar.xcodeproj/xcuserdata/ganeshrajugalla.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar/ContentView.swift -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar/CustomTabBarApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar/CustomTabBarApp.swift -------------------------------------------------------------------------------- /CustomTabBar/CustomTabBar/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabBar/CustomTabBar/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomTabbarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/CustomTabbarView.swift -------------------------------------------------------------------------------- /DotDividerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/DotDividerView.swift -------------------------------------------------------------------------------- /DraggingPositionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/DraggingPositionView.swift -------------------------------------------------------------------------------- /DynamicLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/DynamicLoader.swift -------------------------------------------------------------------------------- /FidgetSpinnerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/FidgetSpinnerView.swift -------------------------------------------------------------------------------- /GlassmorphismView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/GlassmorphismView.swift -------------------------------------------------------------------------------- /IconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/IconView.swift -------------------------------------------------------------------------------- /InfiniteListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/InfiniteListView.swift -------------------------------------------------------------------------------- /InsideShadowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/InsideShadowView.swift -------------------------------------------------------------------------------- /ListBGView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ListBGView.swift -------------------------------------------------------------------------------- /Loaders/Loaders.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Loaders/Loaders.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Loaders/Loaders.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Loaders/Loaders.xcodeproj/project.xcworkspace/xcuserdata/ganeshrajugalla.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders.xcodeproj/project.xcworkspace/xcuserdata/ganeshrajugalla.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Loaders/Loaders.xcodeproj/xcuserdata/ganeshrajugalla.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders.xcodeproj/xcuserdata/ganeshrajugalla.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Loaders/Loaders/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/ContentView.swift -------------------------------------------------------------------------------- /Loaders/Loaders/LoadersApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/LoadersApp.swift -------------------------------------------------------------------------------- /Loaders/Loaders/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Loaders/Loaders/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Loaders/Loaders/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Loaders/Loaders/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Loaders/Loaders/Views/BounceLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/Views/BounceLoader.swift -------------------------------------------------------------------------------- /Loaders/Loaders/Views/CircleLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/Views/CircleLoader.swift -------------------------------------------------------------------------------- /Loaders/Loaders/Views/DotLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Loaders/Loaders/Views/DotLoader.swift -------------------------------------------------------------------------------- /MetalUIBGView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/MetalUIBGView.swift -------------------------------------------------------------------------------- /MovingCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/MovingCardView.swift -------------------------------------------------------------------------------- /OvalShapeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/OvalShapeView.swift -------------------------------------------------------------------------------- /PageableScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PageableScrollView.swift -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample.xcodeproj/project.xcworkspace/xcuserdata/ganeshrajugalla.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample.xcodeproj/project.xcworkspace/xcuserdata/ganeshrajugalla.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample.xcodeproj/xcuserdata/ganeshrajugalla.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample.xcodeproj/xcuserdata/ganeshrajugalla.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample/ContentView.swift -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample/PhotosPickerSampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample/PhotosPickerSampleApp.swift -------------------------------------------------------------------------------- /PhotosPickerSample/PhotosPickerSample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/PhotosPickerSample/PhotosPickerSample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/README.md -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye.xcodeproj/project.xcworkspace/xcuserdata/ganesh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye.xcodeproj/project.xcworkspace/xcuserdata/ganesh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye.xcodeproj/xcuserdata/ganesh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye.xcodeproj/xcuserdata/ganesh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/Neumorphism/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/Neumorphism/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/Neumorphism/Element.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/Neumorphism/Element.colorset/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/Neumorphism/Highlight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/Neumorphism/Highlight.colorset/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/Neumorphism/Shadow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/Neumorphism/Shadow.colorset/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/launch-assets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/launch-assets/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Assets.xcassets/launch-assets/rw-bg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Assets.xcassets/launch-assets/rw-bg.colorset/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/BevelText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/BevelText.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/ColorCircle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/ColorCircle.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/ColorSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/ColorSlider.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/ContentView.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Model/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Model/Color.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Model/Game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Model/Game.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Model/RGB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Model/RGB.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/NeuButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/NeuButtonStyle.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/RGBullsEyeApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/RGBullsEyeApp.swift -------------------------------------------------------------------------------- /RGBullsEye/RGBullsEye/ViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RGBullsEye/RGBullsEye/ViewExtension.swift -------------------------------------------------------------------------------- /RandomColorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RandomColorView.swift -------------------------------------------------------------------------------- /RotationEffectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/RotationEffectView.swift -------------------------------------------------------------------------------- /SafeAreaPadding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/SafeAreaPadding.swift -------------------------------------------------------------------------------- /ScaleEffectScrollTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ScaleEffectScrollTransition.swift -------------------------------------------------------------------------------- /ScrollFromBottom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ScrollFromBottom.swift -------------------------------------------------------------------------------- /ScrollPaging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ScrollPaging.swift -------------------------------------------------------------------------------- /ScrollTransitionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ScrollTransitionView.swift -------------------------------------------------------------------------------- /ScrollTransitionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ScrollTransitionsView.swift -------------------------------------------------------------------------------- /SpinningIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/SpinningIndicatorView.swift -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid.xcodeproj/project.xcworkspace/xcuserdata/ganesh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid.xcodeproj/project.xcworkspace/xcuserdata/ganesh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid.xcodeproj/xcuserdata/ganesh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid.xcodeproj/xcuserdata/ganesh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image1.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image1.imageset/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image1.imageset/image1.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image10.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image10.imageset/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image10.imageset/image10.png -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image11.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image11.imageset/image11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image11.imageset/image11.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image12.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image12.imageset/image12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image12.imageset/image12.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image13.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image13.imageset/image13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image13.imageset/image13.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image14.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image14.imageset/image14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image14.imageset/image14.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image15.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image15.imageset/image15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image15.imageset/image15.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image16.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image16.imageset/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image16.imageset/image16.png -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image17.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image17.imageset/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image17.imageset/image17.png -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image18.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image18.imageset/image18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image18.imageset/image18.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image19.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image19.imageset/image19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image19.imageset/image19.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image2.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image2.imageset/image2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image2.imageset/image2.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image20.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image20.imageset/image20.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image20.imageset/image20.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image21.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image21.imageset/image21.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image21.imageset/image21.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image22.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image22.imageset/image22.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image22.imageset/image22.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image23.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image23.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image23.imageset/image23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image23.imageset/image23.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image24.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image24.imageset/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image24.imageset/image24.png -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image25.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image25.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image25.imageset/image25.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image25.imageset/image25.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image3.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image3.imageset/Image3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image3.imageset/Image3.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image4.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image4.imageset/Image4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image4.imageset/Image4.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image5.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image5.imageset/image5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image5.imageset/image5.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image6.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image6.imageset/image6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image6.imageset/image6.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image7.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image7.imageset/image7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image7.imageset/image7.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image8.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image8.imageset/image8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image8.imageset/image8.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image9.imageset/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Assets.xcassets/image9.imageset/image9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Assets.xcassets/image9.imageset/image9.jpeg -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Model/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Model/Post.swift -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/StaggeredGridApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/StaggeredGridApp.swift -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/View/ContentView.swift -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/View/Home.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/View/Home.swift -------------------------------------------------------------------------------- /StaggeredGrid/StaggeredGrid/View/StaggeredGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/StaggeredGrid/StaggeredGrid/View/StaggeredGrid.swift -------------------------------------------------------------------------------- /SystemSoundsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/SystemSoundsView.swift -------------------------------------------------------------------------------- /TabViewSample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/TabViewSample.swift -------------------------------------------------------------------------------- /TextFieldAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/TextFieldAlert.swift -------------------------------------------------------------------------------- /TikTok.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/TikTok.swift -------------------------------------------------------------------------------- /Timelapse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/Timelapse.swift -------------------------------------------------------------------------------- /ToolBarTitleMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ToolBarTitleMenu.swift -------------------------------------------------------------------------------- /TwitterButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/TwitterButton.swift -------------------------------------------------------------------------------- /ZoomEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaneshRajuGalla/SwiftUI/HEAD/ZoomEffect.swift --------------------------------------------------------------------------------