├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── assets ├── Screenshots │ └── React-Native-Dynamic-Text-Loading.gif ├── icon.png ├── logo.png └── splash.png ├── babel.config.js ├── example ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── AntDesign.ttf │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── assets │ ├── 2957332499138.jpg │ ├── angel-jimenez-168185_2x.png │ ├── efe-kurnaz-315384_2x.png │ ├── gradient.png │ ├── icon.png │ ├── joel-filipe-193035.png │ ├── mario-silva-315041.png │ ├── paul-morris-144777_2x.png │ ├── playbutton.png │ ├── sasha-freemind-186664_2x.png │ ├── sasha-freemind-421432.png │ ├── sasha-freemind-437035.png │ ├── seth-doyle-188635.png │ ├── splash.png │ └── wild-vibez-317184.png ├── babel.config.js ├── index.js ├── ios │ ├── example-tvOS │ │ └── Info.plist │ ├── example-tvOSTests │ │ └── Info.plist │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── example-tvOS.xcscheme │ │ │ └── example.xcscheme │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── metro.config.js ├── package.json ├── src │ └── components │ │ └── ShowcaseScreen.js └── yarn.lock ├── lib └── src │ ├── Loading.js │ └── Loading.style.js └── package.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/.npmignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/README.md -------------------------------------------------------------------------------- /assets/Screenshots/React-Native-Dynamic-Text-Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/assets/Screenshots/React-Native-Dynamic-Text-Loading.gif -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/App.js -------------------------------------------------------------------------------- /example/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/__tests__/App-test.js -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/keystores/BUCK -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/2957332499138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/2957332499138.jpg -------------------------------------------------------------------------------- /example/assets/angel-jimenez-168185_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/angel-jimenez-168185_2x.png -------------------------------------------------------------------------------- /example/assets/efe-kurnaz-315384_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/efe-kurnaz-315384_2x.png -------------------------------------------------------------------------------- /example/assets/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/gradient.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/joel-filipe-193035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/joel-filipe-193035.png -------------------------------------------------------------------------------- /example/assets/mario-silva-315041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/mario-silva-315041.png -------------------------------------------------------------------------------- /example/assets/paul-morris-144777_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/paul-morris-144777_2x.png -------------------------------------------------------------------------------- /example/assets/playbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/playbutton.png -------------------------------------------------------------------------------- /example/assets/sasha-freemind-186664_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/sasha-freemind-186664_2x.png -------------------------------------------------------------------------------- /example/assets/sasha-freemind-421432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/sasha-freemind-421432.png -------------------------------------------------------------------------------- /example/assets/sasha-freemind-437035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/sasha-freemind-437035.png -------------------------------------------------------------------------------- /example/assets/seth-doyle-188635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/seth-doyle-188635.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/assets/wild-vibez-317184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/assets/wild-vibez-317184.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/example-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example-tvOS/Info.plist -------------------------------------------------------------------------------- /example/ios/example-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example-tvOS.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/exampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/ios/exampleTests/exampleTests.m -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/components/ShowcaseScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/src/components/ShowcaseScreen.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /lib/src/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/lib/src/Loading.js -------------------------------------------------------------------------------- /lib/src/Loading.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/lib/src/Loading.style.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrathChaos/react-native-dynamic-text-loading/HEAD/package.json --------------------------------------------------------------------------------