├── .gitignore ├── Animations ├── SwiftUI-Animations.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── SwiftUI-Animations.xcscheme └── SwiftUI-Animations │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── Resources │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ └── Contents.json │ │ ├── Bat.imageset │ │ ├── Bat.png │ │ └── Contents.json │ │ ├── Batman.imageset │ │ ├── BatMan.png │ │ └── Contents.json │ │ ├── Bats.imageset │ │ ├── Contents.json │ │ └── vvv.png │ │ ├── Contents.json │ │ ├── Lightning.imageset │ │ ├── Contents.json │ │ └── Lightning.png │ │ ├── Profile.imageset │ │ ├── Contents.json │ │ └── Profile.jpeg │ │ ├── Round Lightening.imageset │ │ ├── Contents.json │ │ └── Round Lightening.png │ │ ├── bubble.imageset │ │ ├── Contents.json │ │ └── bubble.png │ │ ├── gigi.imageset │ │ ├── Contents.json │ │ └── gigi.jpeg │ │ ├── pot.imageset │ │ ├── Contents.json │ │ └── pot.png │ │ ├── rain-in-the-city.imageset │ │ ├── 1675849892rain-in-the-city.png │ │ └── Contents.json │ │ ├── river.imageset │ │ ├── Contents.json │ │ └── river.png │ │ ├── sand.imageset │ │ ├── Contents.json │ │ └── sand.png │ │ ├── sequoia.imageset │ │ ├── Contents.json │ │ └── Sequoia.png │ │ ├── stove.imageset │ │ ├── Contents.json │ │ └── stove.png │ │ ├── thunder-bw.imageset │ │ ├── Contents.json │ │ └── thundercloud-bw.png │ │ ├── thunder.imageset │ │ ├── Contents.json │ │ └── thunder.png │ │ ├── tiger_02.imageset │ │ ├── Contents.json │ │ └── tiger_02.jpeg │ │ ├── vapor_left.imageset │ │ ├── Contents.json │ │ └── vapor_left.png │ │ ├── vapor_middle.imageset │ │ ├── Contents.json │ │ └── vapor_middle.png │ │ └── vapor_right.imageset │ │ ├── Contents.json │ │ └── vapor_right.png │ ├── SwiftUI_Animations.swift │ ├── Utils │ └── Extensions │ │ └── Color+Extension.swift │ └── Views │ ├── Animations │ ├── BatmanView.swift │ ├── CarbonAtom.swift │ ├── GlassyButtonView.swift │ ├── KakashiView.swift │ ├── LayerMaskUIView.swift │ ├── LoaderUIView.swift │ ├── MaskingView.swift │ ├── PlanetaryAtom.swift │ ├── RandomAnimationView.swift │ ├── SplashView.swift │ ├── SunRiseUIView.swift │ └── distressedFont.swift │ ├── ContentView.swift │ ├── GridView.swift │ ├── GroupView.swift │ ├── Shapes │ ├── Kakashi.swift │ └── Lightening.swift │ └── TestingView.swift ├── README.md ├── gifs ├── batman.gif ├── carbonAtom.gif ├── collections.gif ├── distressedFont.gif ├── dotLoader.gif ├── glassyButton.gif ├── kakashi.gif ├── layerMasking.gif ├── masking.gif ├── planetary.gif ├── randomAni.gif ├── splash.gif └── sunrise.gif └── images └── header_logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/.gitignore -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations.xcodeproj/xcshareddata/xcschemes/SwiftUI-Animations.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations.xcodeproj/xcshareddata/xcschemes/SwiftUI-Animations.xcscheme -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Bat.imageset/Bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Bat.imageset/Bat.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Bat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Bat.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Batman.imageset/BatMan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Batman.imageset/BatMan.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Batman.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Batman.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Bats.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Bats.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Bats.imageset/vvv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Bats.imageset/vvv.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Lightning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Lightning.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Lightning.imageset/Lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Lightning.imageset/Lightning.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Profile.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Profile.imageset/Profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Profile.imageset/Profile.jpeg -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Round Lightening.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Round Lightening.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/Round Lightening.imageset/Round Lightening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/Round Lightening.imageset/Round Lightening.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/bubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/bubble.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/bubble.imageset/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/bubble.imageset/bubble.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/gigi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/gigi.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/gigi.imageset/gigi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/gigi.imageset/gigi.jpeg -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/pot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/pot.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/pot.imageset/pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/pot.imageset/pot.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/rain-in-the-city.imageset/1675849892rain-in-the-city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/rain-in-the-city.imageset/1675849892rain-in-the-city.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/rain-in-the-city.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/rain-in-the-city.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/river.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/river.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/river.imageset/river.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/river.imageset/river.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/sand.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/sand.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/sand.imageset/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/sand.imageset/sand.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/sequoia.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/sequoia.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/sequoia.imageset/Sequoia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/sequoia.imageset/Sequoia.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/stove.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/stove.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/stove.imageset/stove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/stove.imageset/stove.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/thunder-bw.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/thunder-bw.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/thunder-bw.imageset/thundercloud-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/thunder-bw.imageset/thundercloud-bw.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/thunder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/thunder.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/thunder.imageset/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/thunder.imageset/thunder.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/tiger_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/tiger_02.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/tiger_02.imageset/tiger_02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/tiger_02.imageset/tiger_02.jpeg -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_left.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_left.imageset/vapor_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_left.imageset/vapor_left.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_middle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_middle.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_middle.imageset/vapor_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_middle.imageset/vapor_middle.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_right.imageset/Contents.json -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_right.imageset/vapor_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Resources/Assets.xcassets/vapor_right.imageset/vapor_right.png -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/SwiftUI_Animations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/SwiftUI_Animations.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Utils/Extensions/Color+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Utils/Extensions/Color+Extension.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/BatmanView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/BatmanView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/CarbonAtom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/CarbonAtom.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/GlassyButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/GlassyButtonView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/KakashiView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/KakashiView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/LayerMaskUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/LayerMaskUIView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/LoaderUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/LoaderUIView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/MaskingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/MaskingView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/PlanetaryAtom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/PlanetaryAtom.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/RandomAnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/RandomAnimationView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/SplashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/SplashView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/SunRiseUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/SunRiseUIView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Animations/distressedFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Animations/distressedFont.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/ContentView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/GridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/GridView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/GroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/GroupView.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Shapes/Kakashi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Shapes/Kakashi.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/Shapes/Lightening.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/Shapes/Lightening.swift -------------------------------------------------------------------------------- /Animations/SwiftUI-Animations/Views/TestingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/Animations/SwiftUI-Animations/Views/TestingView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/README.md -------------------------------------------------------------------------------- /gifs/batman.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/batman.gif -------------------------------------------------------------------------------- /gifs/carbonAtom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/carbonAtom.gif -------------------------------------------------------------------------------- /gifs/collections.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/collections.gif -------------------------------------------------------------------------------- /gifs/distressedFont.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/distressedFont.gif -------------------------------------------------------------------------------- /gifs/dotLoader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/dotLoader.gif -------------------------------------------------------------------------------- /gifs/glassyButton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/glassyButton.gif -------------------------------------------------------------------------------- /gifs/kakashi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/kakashi.gif -------------------------------------------------------------------------------- /gifs/layerMasking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/layerMasking.gif -------------------------------------------------------------------------------- /gifs/masking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/masking.gif -------------------------------------------------------------------------------- /gifs/planetary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/planetary.gif -------------------------------------------------------------------------------- /gifs/randomAni.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/randomAni.gif -------------------------------------------------------------------------------- /gifs/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/splash.gif -------------------------------------------------------------------------------- /gifs/sunrise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/gifs/sunrise.gif -------------------------------------------------------------------------------- /images/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csprasad/SwiftUI-Animations/HEAD/images/header_logo.png --------------------------------------------------------------------------------