Skip to content

Instantly share code, notes, and snippets.

View georgecartridge's full-sized avatar

George Cartridge georgecartridge

View GitHub Profile
@georgecartridge
georgecartridge / StaggerTextEffect.swift
Created June 27, 2025 10:54
This is a staggered text animation based on the Arc onboarding intro - using the AnimateText swift package (https://github.com/jasudev/AnimateText)
public struct StaggerTextEffect: ATTextAnimateEffect {
public var data: ATElementData
public var userInfo: Any?
public init(_ data: ATElementData, _ userInfo: Any?) {
self.data = data
self.userInfo = userInfo
}
public func body(content: Content) -> some View {