├── ReadMe.md ├── SwiftUITextAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── fukudamasatomo.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── SwiftUITextAnimation ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── Image.imageset │ │ └── Contents.json │ ├── ReferenceImage.imageset │ │ ├── Contents.json │ │ └── Image.png │ ├── SampleOne.imageset │ │ └── Contents.json │ └── sampleImage1.imageset │ │ ├── Contents.json │ │ └── pexels-lisa-fotios-10881143.jpg ├── Backup │ └── TrimTest.swift ├── BlinkingWithBlur.swift ├── Block.swift ├── Blur.swift ├── Bounce.swift ├── Burst.swift ├── Character.swift ├── ContentView.swift ├── DistortInOut.swift ├── DropShadow.swift ├── FadeInOut.swift ├── Flip.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── RouletteText.swift ├── SwiftUITextAnimationApp.swift └── WithAnimationTest.swift └── image ├── BlinkingWithBlur.gif ├── Block.gif ├── BlurPreview.gif ├── BounceImage.gif ├── DropShadow.gif ├── FadeInOut.gif └── Roulette.gif /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/ReadMe.md -------------------------------------------------------------------------------- /SwiftUITextAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUITextAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftUITextAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftUITextAnimation.xcodeproj/xcuserdata/fukudamasatomo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation.xcodeproj/xcuserdata/fukudamasatomo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SwiftUITextAnimation.xcodeproj/xcuserdata/fukudamasatomo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation.xcodeproj/xcuserdata/fukudamasatomo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/ReferenceImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/ReferenceImage.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/ReferenceImage.imageset/Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/ReferenceImage.imageset/Image.png -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/SampleOne.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/SampleOne.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/sampleImage1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/sampleImage1.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftUITextAnimation/Assets.xcassets/sampleImage1.imageset/pexels-lisa-fotios-10881143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Assets.xcassets/sampleImage1.imageset/pexels-lisa-fotios-10881143.jpg -------------------------------------------------------------------------------- /SwiftUITextAnimation/Backup/TrimTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Backup/TrimTest.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/BlinkingWithBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/BlinkingWithBlur.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/Block.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Block.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/Blur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Blur.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/Bounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Bounce.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/Burst.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Burst.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/Character.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Character.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/ContentView.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/DistortInOut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/DistortInOut.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/DropShadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/DropShadow.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/FadeInOut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/FadeInOut.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/Flip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Flip.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUITextAnimation/RouletteText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/RouletteText.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/SwiftUITextAnimationApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/SwiftUITextAnimationApp.swift -------------------------------------------------------------------------------- /SwiftUITextAnimation/WithAnimationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/SwiftUITextAnimation/WithAnimationTest.swift -------------------------------------------------------------------------------- /image/BlinkingWithBlur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/image/BlinkingWithBlur.gif -------------------------------------------------------------------------------- /image/Block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/image/Block.gif -------------------------------------------------------------------------------- /image/BlurPreview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/image/BlurPreview.gif -------------------------------------------------------------------------------- /image/BounceImage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/image/BounceImage.gif -------------------------------------------------------------------------------- /image/DropShadow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/image/DropShadow.gif -------------------------------------------------------------------------------- /image/FadeInOut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/image/FadeInOut.gif -------------------------------------------------------------------------------- /image/Roulette.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chitomo12/SwiftUI-Text-Animation-Library/HEAD/image/Roulette.gif --------------------------------------------------------------------------------