├── .gitattributes ├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── index.ts ├── jest.config.js ├── package.json ├── rn-cli.config.js ├── src ├── PullAnimation.tsx ├── PullToRefreshProps.ts ├── PullToRefreshView.android.tsx ├── PullToRefreshView.ios.tsx └── __tests__ │ ├── PullAnimation.spec.tsx │ ├── PullToRefreshView.android.spec.tsx │ ├── PullToRefreshView.ios.spec.tsx │ ├── __snapshots__ │ ├── PullAnimation.spec.tsx.snap │ ├── PullToRefreshView.android.spec.tsx.snap │ └── PullToRefreshView.ios.spec.tsx.snap │ └── test-helper │ ├── setupTestFrameworkScript.ts │ └── setupTests.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/package.json -------------------------------------------------------------------------------- /rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/rn-cli.config.js -------------------------------------------------------------------------------- /src/PullAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/PullAnimation.tsx -------------------------------------------------------------------------------- /src/PullToRefreshProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/PullToRefreshProps.ts -------------------------------------------------------------------------------- /src/PullToRefreshView.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/PullToRefreshView.android.tsx -------------------------------------------------------------------------------- /src/PullToRefreshView.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/PullToRefreshView.ios.tsx -------------------------------------------------------------------------------- /src/__tests__/PullAnimation.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/__tests__/PullAnimation.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/PullToRefreshView.android.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/__tests__/PullToRefreshView.android.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/PullToRefreshView.ios.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/__tests__/PullToRefreshView.ios.spec.tsx -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/PullAnimation.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/__tests__/__snapshots__/PullAnimation.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/PullToRefreshView.android.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/__tests__/__snapshots__/PullToRefreshView.android.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/PullToRefreshView.ios.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/__tests__/__snapshots__/PullToRefreshView.ios.spec.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/test-helper/setupTestFrameworkScript.ts: -------------------------------------------------------------------------------- 1 | import "jest-styled-components"; 2 | -------------------------------------------------------------------------------- /src/__tests__/test-helper/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/src/__tests__/test-helper/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/passpier/react-native-smooth-pull-to-refresh/HEAD/yarn.lock --------------------------------------------------------------------------------