├── .eslintrc.js ├── .gitignore ├── .npmignore ├── README.md ├── assets └── swiftui-expo.mp4 ├── example ├── .gitignore ├── App.tsx ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── expo │ │ │ │ └── modules │ │ │ │ └── iostextanimations │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash-icon.png ├── babel.config.js ├── index.ts ├── ios │ ├── .gitignore │ ├── .spm.pods │ │ └── packages │ │ │ └── .umbrella │ │ │ ├── .build │ │ │ ├── .lock │ │ │ └── workspace-state.json │ │ │ └── Package.swift │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── Podfile.properties.json │ ├── expoiostextanimationsexample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── expoiostextanimationsexample.xcscheme │ ├── expoiostextanimationsexample.xcworkspace │ │ └── contents.xcworkspacedata │ └── expoiostextanimationsexample │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreenBackground.colorset │ │ │ └── Contents.json │ │ └── SplashScreenLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── image.png │ │ │ ├── image@2x.png │ │ │ └── image@3x.png │ │ ├── Info.plist │ │ ├── PrivacyInfo.xcprivacy │ │ ├── SplashScreen.storyboard │ │ ├── Supporting │ │ └── Expo.plist │ │ ├── expoiostextanimationsexample-Bridging-Header.h │ │ └── expoiostextanimationsexample.entitlements ├── metro.config.js ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── tsconfig.json └── webpack.config.js ├── expo-module.config.json ├── ios ├── AnimateText │ ├── AnimateText.swift │ ├── Effects │ │ ├── Advanced │ │ │ ├── ATChainEffect.swift │ │ │ ├── ATChimeBellEffect.swift │ │ │ ├── ATCurtainEffect.swift │ │ │ ├── ATDropEffect.swift │ │ │ ├── ATHangEffect.swift │ │ │ ├── ATPaperEffect.swift │ │ │ ├── ATRandomTypoEffect.swift │ │ │ ├── ATSpringEffect.swift │ │ │ ├── ATTwistEffect.swift │ │ │ └── ATTypoEffect.swift │ │ └── Basic │ │ │ ├── ATBlurEffect.swift │ │ │ ├── ATBottomTopEffect.swift │ │ │ ├── ATOffsetEffect.swift │ │ │ ├── ATOpacityEffect.swift │ │ │ ├── ATRotateEffect.swift │ │ │ ├── ATScaleEffect.swift │ │ │ ├── ATSlideEffect.swift │ │ │ └── ATTopBottomEffect.swift │ ├── Extensions │ │ └── View+Extensions.swift │ ├── Modifiers │ │ └── ATRandomTypoAnimation.swift │ ├── Preview │ │ └── ATAnimateTextPreview.swift │ └── Protocol │ │ ├── ATTextAnimatable.swift │ │ ├── ATTextAnimateEffect.swift │ │ └── Data │ │ └── ATElementData.swift ├── NativeiOSTextAnimationsExpo.podspec ├── NativeiOSTextAnimationsExpoModule.swift ├── NativeiOSTextAnimationsExpoView.swift └── utils │ └── UnitValue.swift ├── package.json ├── pnpm-lock.yaml ├── src ├── AnimatedText.ios.tsx ├── NativeView.ios.tsx ├── index.ts └── types.ts └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/README.md -------------------------------------------------------------------------------- /assets/swiftui-expo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/assets/swiftui-expo.mp4 -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/expo/modules/iostextanimations/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/java/expo/modules/iostextanimations/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/expo/modules/iostextanimations/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/java/expo/modules/iostextanimations/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/assets/splash-icon.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/index.ts -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/.spm.pods/packages/.umbrella/.build/.lock: -------------------------------------------------------------------------------- 1 | 66085 -------------------------------------------------------------------------------- /example/ios/.spm.pods/packages/.umbrella/.build/workspace-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/.spm.pods/packages/.umbrella/.build/workspace-state.json -------------------------------------------------------------------------------- /example/ios/.spm.pods/packages/.umbrella/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/.spm.pods/packages/.umbrella/Package.swift -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/Podfile.properties.json -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample.xcodeproj/xcshareddata/xcschemes/expoiostextanimationsexample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample.xcodeproj/xcshareddata/xcschemes/expoiostextanimationsexample.xcscheme -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenBackground.colorset/Contents.json -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenLogo.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenLogo.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenLogo.imageset/image.png -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenLogo.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenLogo.imageset/image@2x.png -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenLogo.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Images.xcassets/SplashScreenLogo.imageset/image@3x.png -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Info.plist -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/SplashScreen.storyboard -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/Supporting/Expo.plist -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/expoiostextanimationsexample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/expoiostextanimationsexample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/expoiostextanimationsexample/expoiostextanimationsexample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/ios/expoiostextanimationsexample/expoiostextanimationsexample.entitlements -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/package.json -------------------------------------------------------------------------------- /example/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/pnpm-lock.yaml -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /expo-module.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/expo-module.config.json -------------------------------------------------------------------------------- /ios/AnimateText/AnimateText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/AnimateText.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATChainEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATChainEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATChimeBellEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATChimeBellEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATCurtainEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATCurtainEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATDropEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATDropEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATHangEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATHangEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATPaperEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATPaperEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATRandomTypoEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATRandomTypoEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATSpringEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATSpringEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATTwistEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATTwistEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Advanced/ATTypoEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Advanced/ATTypoEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Basic/ATBlurEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Basic/ATBlurEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Basic/ATBottomTopEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Basic/ATBottomTopEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Basic/ATOffsetEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Basic/ATOffsetEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Basic/ATOpacityEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Basic/ATOpacityEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Basic/ATRotateEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Basic/ATRotateEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Basic/ATScaleEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Basic/ATScaleEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Basic/ATSlideEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Basic/ATSlideEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Effects/Basic/ATTopBottomEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Effects/Basic/ATTopBottomEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Extensions/View+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Extensions/View+Extensions.swift -------------------------------------------------------------------------------- /ios/AnimateText/Modifiers/ATRandomTypoAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Modifiers/ATRandomTypoAnimation.swift -------------------------------------------------------------------------------- /ios/AnimateText/Preview/ATAnimateTextPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Preview/ATAnimateTextPreview.swift -------------------------------------------------------------------------------- /ios/AnimateText/Protocol/ATTextAnimatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Protocol/ATTextAnimatable.swift -------------------------------------------------------------------------------- /ios/AnimateText/Protocol/ATTextAnimateEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Protocol/ATTextAnimateEffect.swift -------------------------------------------------------------------------------- /ios/AnimateText/Protocol/Data/ATElementData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/AnimateText/Protocol/Data/ATElementData.swift -------------------------------------------------------------------------------- /ios/NativeiOSTextAnimationsExpo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/NativeiOSTextAnimationsExpo.podspec -------------------------------------------------------------------------------- /ios/NativeiOSTextAnimationsExpoModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/NativeiOSTextAnimationsExpoModule.swift -------------------------------------------------------------------------------- /ios/NativeiOSTextAnimationsExpoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/NativeiOSTextAnimationsExpoView.swift -------------------------------------------------------------------------------- /ios/utils/UnitValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/ios/utils/UnitValue.swift -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/AnimatedText.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/src/AnimatedText.ios.tsx -------------------------------------------------------------------------------- /src/NativeView.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/src/NativeView.ios.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rit3zh/expo-ios-text-animations/HEAD/tsconfig.json --------------------------------------------------------------------------------