├── .gitignore ├── LICENSE ├── README.md ├── appleidanimation.swiftpm ├── .swiftpm │ ├── playgrounds │ │ ├── DocumentThumbnail.plist │ │ └── DocumentThumbnail.png │ └── xcode │ │ └── package.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ContentView.swift ├── MyApp.swift └── Package.swift └── assets ├── output.mp4 ├── output.png ├── output_square.mov ├── source.mov └── source.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/README.md -------------------------------------------------------------------------------- /appleidanimation.swiftpm/.swiftpm/playgrounds/DocumentThumbnail.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/appleidanimation.swiftpm/.swiftpm/playgrounds/DocumentThumbnail.plist -------------------------------------------------------------------------------- /appleidanimation.swiftpm/.swiftpm/playgrounds/DocumentThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/appleidanimation.swiftpm/.swiftpm/playgrounds/DocumentThumbnail.png -------------------------------------------------------------------------------- /appleidanimation.swiftpm/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/appleidanimation.swiftpm/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /appleidanimation.swiftpm/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/appleidanimation.swiftpm/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /appleidanimation.swiftpm/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/appleidanimation.swiftpm/ContentView.swift -------------------------------------------------------------------------------- /appleidanimation.swiftpm/MyApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/appleidanimation.swiftpm/MyApp.swift -------------------------------------------------------------------------------- /appleidanimation.swiftpm/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/appleidanimation.swiftpm/Package.swift -------------------------------------------------------------------------------- /assets/output.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/assets/output.mp4 -------------------------------------------------------------------------------- /assets/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/assets/output.png -------------------------------------------------------------------------------- /assets/output_square.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/assets/output_square.mov -------------------------------------------------------------------------------- /assets/source.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/assets/source.mov -------------------------------------------------------------------------------- /assets/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrinh0/appleid-animation/HEAD/assets/source.png --------------------------------------------------------------------------------