├── .eslintrc ├── .gitignore ├── .npmignore ├── Example ├── .buckconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── __tests__ │ └── App-test.tsx ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── textinputeffects │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── textinputeffects │ │ │ │ ├── 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 │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── TextInputEffects-tvOS │ │ └── Info.plist │ ├── TextInputEffects-tvOSTests │ │ └── Info.plist │ ├── TextInputEffects.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── TextInputEffects-tvOS.xcscheme │ │ │ └── TextInputEffects.xcscheme │ ├── TextInputEffects.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── TextInputEffects │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── TextInputEffectsTests │ │ ├── Info.plist │ │ └── TextInputEffectsTests.m ├── metro.config.js ├── package.json ├── tsconfig.json └── yarn.lock ├── LICENCE ├── README.md ├── lib ├── Akira.js ├── BaseInput.js ├── Fumi.js ├── Hideo.js ├── Hoshi.js ├── Isao.js ├── Jiro.js ├── Kaede.js ├── Kohana.js ├── Madoka.js ├── Makiko.js ├── Sae.js └── index.js ├── package.json ├── screenshots ├── akira.gif ├── full.gif ├── fumi.gif ├── hideo.gif ├── hoshi.gif ├── isao.gif ├── jiro.gif ├── kaede.gif ├── kohana.gif ├── madoka.gif ├── makiko.gif └── sae.gif └── types └── types.d.ts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | *.iml 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | Example 2 | screenshots 3 | -------------------------------------------------------------------------------- /Example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/.buckconfig -------------------------------------------------------------------------------- /Example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/.eslintrc.js -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/.prettierrc.js -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/App.tsx -------------------------------------------------------------------------------- /Example/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/__tests__/App-test.tsx -------------------------------------------------------------------------------- /Example/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/_BUCK -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /Example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/debug.keystore -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/debug/java/com/textinputeffects/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/src/debug/java/com/textinputeffects/ReactNativeFlipper.java -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/textinputeffects/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/src/main/java/com/textinputeffects/MainActivity.java -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/textinputeffects/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/src/main/java/com/textinputeffects/MainApplication.java -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/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/halilb/react-native-textinput-effects/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/android/settings.gradle -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/babel.config.js -------------------------------------------------------------------------------- /Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/index.js -------------------------------------------------------------------------------- /Example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/Podfile -------------------------------------------------------------------------------- /Example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/Podfile.lock -------------------------------------------------------------------------------- /Example/ios/TextInputEffects-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects-tvOS/Info.plist -------------------------------------------------------------------------------- /Example/ios/TextInputEffects-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/TextInputEffects.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/TextInputEffects.xcodeproj/xcshareddata/xcschemes/TextInputEffects-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects.xcodeproj/xcshareddata/xcschemes/TextInputEffects-tvOS.xcscheme -------------------------------------------------------------------------------- /Example/ios/TextInputEffects.xcodeproj/xcshareddata/xcschemes/TextInputEffects.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects.xcodeproj/xcshareddata/xcschemes/TextInputEffects.xcscheme -------------------------------------------------------------------------------- /Example/ios/TextInputEffects.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ios/TextInputEffects.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ios/TextInputEffects/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects/AppDelegate.h -------------------------------------------------------------------------------- /Example/ios/TextInputEffects/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects/AppDelegate.m -------------------------------------------------------------------------------- /Example/ios/TextInputEffects/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ios/TextInputEffects/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/TextInputEffects/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ios/TextInputEffects/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects/Info.plist -------------------------------------------------------------------------------- /Example/ios/TextInputEffects/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffects/main.m -------------------------------------------------------------------------------- /Example/ios/TextInputEffectsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffectsTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/TextInputEffectsTests/TextInputEffectsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/ios/TextInputEffectsTests/TextInputEffectsTests.m -------------------------------------------------------------------------------- /Example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/metro.config.js -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/package.json -------------------------------------------------------------------------------- /Example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/tsconfig.json -------------------------------------------------------------------------------- /Example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/Example/yarn.lock -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/README.md -------------------------------------------------------------------------------- /lib/Akira.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Akira.js -------------------------------------------------------------------------------- /lib/BaseInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/BaseInput.js -------------------------------------------------------------------------------- /lib/Fumi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Fumi.js -------------------------------------------------------------------------------- /lib/Hideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Hideo.js -------------------------------------------------------------------------------- /lib/Hoshi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Hoshi.js -------------------------------------------------------------------------------- /lib/Isao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Isao.js -------------------------------------------------------------------------------- /lib/Jiro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Jiro.js -------------------------------------------------------------------------------- /lib/Kaede.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Kaede.js -------------------------------------------------------------------------------- /lib/Kohana.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Kohana.js -------------------------------------------------------------------------------- /lib/Madoka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Madoka.js -------------------------------------------------------------------------------- /lib/Makiko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Makiko.js -------------------------------------------------------------------------------- /lib/Sae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/Sae.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/akira.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/akira.gif -------------------------------------------------------------------------------- /screenshots/full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/full.gif -------------------------------------------------------------------------------- /screenshots/fumi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/fumi.gif -------------------------------------------------------------------------------- /screenshots/hideo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/hideo.gif -------------------------------------------------------------------------------- /screenshots/hoshi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/hoshi.gif -------------------------------------------------------------------------------- /screenshots/isao.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/isao.gif -------------------------------------------------------------------------------- /screenshots/jiro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/jiro.gif -------------------------------------------------------------------------------- /screenshots/kaede.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/kaede.gif -------------------------------------------------------------------------------- /screenshots/kohana.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/kohana.gif -------------------------------------------------------------------------------- /screenshots/madoka.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/madoka.gif -------------------------------------------------------------------------------- /screenshots/makiko.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/makiko.gif -------------------------------------------------------------------------------- /screenshots/sae.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/screenshots/sae.gif -------------------------------------------------------------------------------- /types/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/halilb/react-native-textinput-effects/HEAD/types/types.d.ts --------------------------------------------------------------------------------