├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── card-images.js ├── demo.gif ├── example ├── .babelrc ├── .buckconfig ├── .exponent │ ├── packager-info.json │ └── settings.json ├── .watchmanconfig ├── README.md ├── exp.json ├── images │ ├── background.png │ ├── card-back.png │ ├── card-front.png │ └── shadow.png ├── main.js └── package.json ├── index.js ├── package.json ├── preview.png └── readme.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/LICENSE -------------------------------------------------------------------------------- /card-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/card-images.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/demo.gif -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/.babelrc -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.exponent/packager-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/.exponent/packager-info.json -------------------------------------------------------------------------------- /example/.exponent/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/.exponent/settings.json -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/README.md -------------------------------------------------------------------------------- /example/exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/exp.json -------------------------------------------------------------------------------- /example/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/images/background.png -------------------------------------------------------------------------------- /example/images/card-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/images/card-back.png -------------------------------------------------------------------------------- /example/images/card-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/images/card-front.png -------------------------------------------------------------------------------- /example/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/images/shadow.png -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/main.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/example/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/package.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/preview.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnylazuardi/react-native-credit-card/HEAD/readme.md --------------------------------------------------------------------------------