├── .dockerignore ├── .gitattributes ├── .github └── issue_template.md ├── .gitignore ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── RNTextGradientView.podspec ├── TextGradientExample ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── Dockerfile ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── .gitkeep │ │ │ ├── java │ │ │ └── com │ │ │ │ └── textgradientexample │ │ │ │ ├── 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 ├── babel.config.js ├── index.js ├── ios │ ├── .gitignore │ ├── TextGradientExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── TextGradientExample-tvOS.xcscheme │ │ │ └── TextGradientExample.xcscheme │ └── TextGradientExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m ├── metro.config.js ├── package-lock.json └── package.json ├── android ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── iyegoroff │ └── RNTextGradient │ ├── Linear │ ├── RNLinearTextGradientManager.java │ ├── RNLinearTextGradientSpan.java │ ├── RNShadowLinearTextGradient.java │ ├── RNVirtualLinearTextGradientManager.java │ └── RNVirtualShadowLinearTextGradient.java │ ├── OneOffListener.java │ ├── RNSetGradientSpanOperation.java │ ├── RNShadowTextGradient.java │ ├── RNTextGradient.java │ ├── RNTextGradientManager.java │ ├── RNTextGradientPackage.java │ ├── RNVirtualTextGradientManager.java │ └── ReflectUtils.java ├── img ├── android.jpg ├── ios.png └── useViewFrame.png ├── ios ├── .gitignore ├── RNLinearGradientUtils.h ├── RNLinearGradientUtils.m ├── RNLinearTextGradientShadowView.h ├── RNLinearTextGradientShadowView.m ├── RNLinearTextGradientShadowViewDelegate.h ├── RNLinearTextGradientViewManager.h ├── RNLinearTextGradientViewManager.m ├── RNTextGradient.xcodeproj │ └── project.pbxproj ├── RNTextGradientShadowView.h ├── RNTextGradientShadowView.m ├── RNTextGradientShadowViewDelegate.h ├── RNTextGradientUtils.h ├── RNTextGradientUtils.m ├── RNTextGradientValue.h ├── RNTextGradientValue.m ├── RNTextGradientView.h ├── RNTextGradientView.m ├── RNTextGradientViewManager.h ├── RNTextGradientViewManager.m ├── RNVirtualLinearTextGradientShadowView.h ├── RNVirtualLinearTextGradientShadowView.m ├── RNVirtualLinearTextGradientViewManager.h ├── RNVirtualLinearTextGradientViewManager.m ├── RNVirtualTextGradientShadowView.h ├── RNVirtualTextGradientShadowView.m ├── RNVirtualTextGradientViewManager.h └── RNVirtualTextGradientViewManager.m ├── manual_installation.md ├── package.json ├── patch-rn.js └── src ├── create-text-gradient-class.js ├── index.d.ts ├── index.js └── linear-text-gradient.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /RNTextGradientView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/RNTextGradientView.podspec -------------------------------------------------------------------------------- /TextGradientExample/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/.flowconfig -------------------------------------------------------------------------------- /TextGradientExample/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /TextGradientExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/.gitignore -------------------------------------------------------------------------------- /TextGradientExample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /TextGradientExample/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/App.js -------------------------------------------------------------------------------- /TextGradientExample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/Dockerfile -------------------------------------------------------------------------------- /TextGradientExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/README.md -------------------------------------------------------------------------------- /TextGradientExample/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/.gitignore -------------------------------------------------------------------------------- /TextGradientExample/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/BUCK -------------------------------------------------------------------------------- /TextGradientExample/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/build.gradle -------------------------------------------------------------------------------- /TextGradientExample/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/build_defs.bzl -------------------------------------------------------------------------------- /TextGradientExample/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/java/com/textgradientexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/java/com/textgradientexample/MainActivity.java -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/java/com/textgradientexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/java/com/textgradientexample/MainApplication.java -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TextGradientExample/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /TextGradientExample/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/build.gradle -------------------------------------------------------------------------------- /TextGradientExample/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/gradle.properties -------------------------------------------------------------------------------- /TextGradientExample/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TextGradientExample/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /TextGradientExample/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/gradlew -------------------------------------------------------------------------------- /TextGradientExample/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/gradlew.bat -------------------------------------------------------------------------------- /TextGradientExample/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/keystores/BUCK -------------------------------------------------------------------------------- /TextGradientExample/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /TextGradientExample/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/android/settings.gradle -------------------------------------------------------------------------------- /TextGradientExample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/app.json -------------------------------------------------------------------------------- /TextGradientExample/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/babel.config.js -------------------------------------------------------------------------------- /TextGradientExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/index.js -------------------------------------------------------------------------------- /TextGradientExample/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/.gitignore -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample.xcodeproj/xcshareddata/xcschemes/TextGradientExample-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample.xcodeproj/xcshareddata/xcschemes/TextGradientExample-tvOS.xcscheme -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample.xcodeproj/xcshareddata/xcschemes/TextGradientExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample.xcodeproj/xcshareddata/xcschemes/TextGradientExample.xcscheme -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample/AppDelegate.h -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample/AppDelegate.m -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample/Info.plist -------------------------------------------------------------------------------- /TextGradientExample/ios/TextGradientExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/ios/TextGradientExample/main.m -------------------------------------------------------------------------------- /TextGradientExample/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/metro.config.js -------------------------------------------------------------------------------- /TextGradientExample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/package-lock.json -------------------------------------------------------------------------------- /TextGradientExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/TextGradientExample/package.json -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .idea 3 | .gradle 4 | local.properties 5 | *.iml 6 | .DS_Store -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/Linear/RNLinearTextGradientManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/Linear/RNLinearTextGradientManager.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/Linear/RNLinearTextGradientSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/Linear/RNLinearTextGradientSpan.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/Linear/RNShadowLinearTextGradient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/Linear/RNShadowLinearTextGradient.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/Linear/RNVirtualLinearTextGradientManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/Linear/RNVirtualLinearTextGradientManager.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/Linear/RNVirtualShadowLinearTextGradient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/Linear/RNVirtualShadowLinearTextGradient.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/OneOffListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/OneOffListener.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/RNSetGradientSpanOperation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/RNSetGradientSpanOperation.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/RNShadowTextGradient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/RNShadowTextGradient.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/RNTextGradient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/RNTextGradient.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/RNTextGradientManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/RNTextGradientManager.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/RNTextGradientPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/RNTextGradientPackage.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/RNVirtualTextGradientManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/RNVirtualTextGradientManager.java -------------------------------------------------------------------------------- /android/src/main/java/iyegoroff/RNTextGradient/ReflectUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/android/src/main/java/iyegoroff/RNTextGradient/ReflectUtils.java -------------------------------------------------------------------------------- /img/android.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/img/android.jpg -------------------------------------------------------------------------------- /img/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/img/ios.png -------------------------------------------------------------------------------- /img/useViewFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/img/useViewFrame.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/RNLinearGradientUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNLinearGradientUtils.h -------------------------------------------------------------------------------- /ios/RNLinearGradientUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNLinearGradientUtils.m -------------------------------------------------------------------------------- /ios/RNLinearTextGradientShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNLinearTextGradientShadowView.h -------------------------------------------------------------------------------- /ios/RNLinearTextGradientShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNLinearTextGradientShadowView.m -------------------------------------------------------------------------------- /ios/RNLinearTextGradientShadowViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNLinearTextGradientShadowViewDelegate.h -------------------------------------------------------------------------------- /ios/RNLinearTextGradientViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNLinearTextGradientViewManager.h -------------------------------------------------------------------------------- /ios/RNLinearTextGradientViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNLinearTextGradientViewManager.m -------------------------------------------------------------------------------- /ios/RNTextGradient.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradient.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNTextGradientShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientShadowView.h -------------------------------------------------------------------------------- /ios/RNTextGradientShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientShadowView.m -------------------------------------------------------------------------------- /ios/RNTextGradientShadowViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientShadowViewDelegate.h -------------------------------------------------------------------------------- /ios/RNTextGradientUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientUtils.h -------------------------------------------------------------------------------- /ios/RNTextGradientUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientUtils.m -------------------------------------------------------------------------------- /ios/RNTextGradientValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientValue.h -------------------------------------------------------------------------------- /ios/RNTextGradientValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientValue.m -------------------------------------------------------------------------------- /ios/RNTextGradientView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientView.h -------------------------------------------------------------------------------- /ios/RNTextGradientView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientView.m -------------------------------------------------------------------------------- /ios/RNTextGradientViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientViewManager.h -------------------------------------------------------------------------------- /ios/RNTextGradientViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNTextGradientViewManager.m -------------------------------------------------------------------------------- /ios/RNVirtualLinearTextGradientShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNVirtualLinearTextGradientShadowView.h -------------------------------------------------------------------------------- /ios/RNVirtualLinearTextGradientShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNVirtualLinearTextGradientShadowView.m -------------------------------------------------------------------------------- /ios/RNVirtualLinearTextGradientViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNVirtualLinearTextGradientViewManager.h -------------------------------------------------------------------------------- /ios/RNVirtualLinearTextGradientViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNVirtualLinearTextGradientViewManager.m -------------------------------------------------------------------------------- /ios/RNVirtualTextGradientShadowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNVirtualTextGradientShadowView.h -------------------------------------------------------------------------------- /ios/RNVirtualTextGradientShadowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNVirtualTextGradientShadowView.m -------------------------------------------------------------------------------- /ios/RNVirtualTextGradientViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNVirtualTextGradientViewManager.h -------------------------------------------------------------------------------- /ios/RNVirtualTextGradientViewManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/ios/RNVirtualTextGradientViewManager.m -------------------------------------------------------------------------------- /manual_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/manual_installation.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/package.json -------------------------------------------------------------------------------- /patch-rn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/patch-rn.js -------------------------------------------------------------------------------- /src/create-text-gradient-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/src/create-text-gradient-class.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/src/index.js -------------------------------------------------------------------------------- /src/linear-text-gradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iyegoroff/react-native-text-gradient/HEAD/src/linear-text-gradient.js --------------------------------------------------------------------------------