├── .editorconfig ├── .gitignore ├── .travis.yml ├── HISTORY.md ├── LICENSE.md ├── README.md ├── examples ├── demo.html ├── demo.tsx ├── disable-inner.html ├── disable-inner.tsx ├── disable-outer.html └── disable-outer.tsx ├── index.js ├── package.json ├── src ├── PressEvent.tsx └── index.tsx ├── tests └── index.js ├── tsconfig.json └── typings ├── custom.d.ts └── index.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/README.md -------------------------------------------------------------------------------- /examples/demo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/examples/demo.tsx -------------------------------------------------------------------------------- /examples/disable-inner.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/disable-inner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/examples/disable-inner.tsx -------------------------------------------------------------------------------- /examples/disable-outer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/disable-outer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/examples/disable-outer.tsx -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/index'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/package.json -------------------------------------------------------------------------------- /src/PressEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/src/PressEvent.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/tests/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/touchable/HEAD/typings/custom.d.ts -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | --------------------------------------------------------------------------------