├── .expo-shared └── assets.json ├── .github └── FUNDING.yml ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── components └── TextAnimator.js ├── package.json ├── react-native-animated-sentence.png ├── yarn-error.log └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/TextAnimator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/components/TextAnimator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/package.json -------------------------------------------------------------------------------- /react-native-animated-sentence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/react-native-animated-sentence.png -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-animated-sentence/HEAD/yarn.lock --------------------------------------------------------------------------------