├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── assets └── screenshot.jpg ├── commitlint.config.js ├── lib ├── Hyperlinks.tsx └── index.ts ├── package.json ├── rome.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/assets/screenshot.jpg -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'] 3 | } 4 | -------------------------------------------------------------------------------- /lib/Hyperlinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/lib/Hyperlinks.tsx -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/lib/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/package.json -------------------------------------------------------------------------------- /rome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/rome.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresribeiro/react-native-hyperlinks/HEAD/tsconfig.json --------------------------------------------------------------------------------