├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── close-button.png ├── cross.png ├── delete.png └── fingerprint.png ├── index.js ├── package.json ├── screenshots ├── blue.png └── second.png └── static └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/README.md -------------------------------------------------------------------------------- /assets/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/assets/close-button.png -------------------------------------------------------------------------------- /assets/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/assets/cross.png -------------------------------------------------------------------------------- /assets/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/assets/delete.png -------------------------------------------------------------------------------- /assets/fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/assets/fingerprint.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/screenshots/blue.png -------------------------------------------------------------------------------- /screenshots/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/screenshots/second.png -------------------------------------------------------------------------------- /static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danchokobo/react-native-code-verification/HEAD/static/index.js --------------------------------------------------------------------------------