├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── App.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── metro.config.js ├── package.json ├── src │ ├── App.tsx │ └── third-party │ │ └── gorhom-bottom-sheet │ │ └── index.tsx ├── tsconfig.json └── webpack.config.js ├── lefthook.yml ├── package.json ├── src ├── Provider.tsx ├── TextInput.tsx ├── ViewWrapper.tsx ├── index.tsx ├── mergeRefs.ts ├── useFormSmartScroll.tsx ├── useKeyboard.ts ├── useOrientation.ts └── withSmartScroll.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- 1 | export { default } from './src/App'; 2 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/third-party/gorhom-bottom-sheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/src/third-party/gorhom-bottom-sheet/index.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/package.json -------------------------------------------------------------------------------- /src/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/Provider.tsx -------------------------------------------------------------------------------- /src/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/TextInput.tsx -------------------------------------------------------------------------------- /src/ViewWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/ViewWrapper.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/mergeRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/mergeRefs.ts -------------------------------------------------------------------------------- /src/useFormSmartScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/useFormSmartScroll.tsx -------------------------------------------------------------------------------- /src/useKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/useKeyboard.ts -------------------------------------------------------------------------------- /src/useOrientation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/useOrientation.ts -------------------------------------------------------------------------------- /src/withSmartScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/src/withSmartScroll.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/react-native-magic-scroll/HEAD/yarn.lock --------------------------------------------------------------------------------