├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettier ├── .prettierignore ├── LICENSE.md ├── README.md ├── demo.gif ├── package.json ├── src ├── KeyboardAwareScrollView.tsx ├── index.ts ├── useKeyboardListeners.ts ├── useMaskedTextInput.ts └── useScrollView.tsx ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/.prettier -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .history 2 | dist/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/package.json -------------------------------------------------------------------------------- /src/KeyboardAwareScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/src/KeyboardAwareScrollView.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/useKeyboardListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/src/useKeyboardListeners.ts -------------------------------------------------------------------------------- /src/useMaskedTextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/src/useMaskedTextInput.ts -------------------------------------------------------------------------------- /src/useScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/src/useScrollView.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faradey27/react-native-keyboard-tools/HEAD/yarn.lock --------------------------------------------------------------------------------