react-native-credit-card-v2

React native credit card input component

Usage no npm install needed!

<script type="module">
  import reactNativeCreditCardV2 from 'https://cdn.skypack.dev/react-native-credit-card-v2';
</script>

README

React Native Credit Card 💳

A better credit card form for React Native

React native port of the display of Card by @jessepollak

rn-credit-card rn-ios

Demo

https://exp.host/@sonnylazuardi/react-native-credit-card-demos

Background

This is a react native port of Card. There is a react port of Card, but it still renders on browser DOM (which is not as good as native view), so this library will take advantage of both.

Goals

  • Look like Card.
  • Provide a react interface for displaying credit card information.

Design Resources

I got the design resources from the Ramakrishna V's dribbble

design

Usage

  • npm install --save react-native-credit-card-v2
  • In your react native script add these lines
import CheckerCC from 'card-validator';
import React, {useMemo} from 'react';
import CreditCard from 'react-native-credit-card-v2';

export const Assets = {
  card: {
    amex: require('../assets/cards/amex.png'),
    diners: require('../assets/cards/diners.png'),
    discover: require('../assets/cards/discover.png'),
    jcb: require('../assets/cards/jcb.png'),
    maestro: require('../assets/cards/maestro.png'),
    mastercard: require('../assets/cards/mastercard.png'),
    visa: require('../assets/cards/visa.png'),
    unionpay: require('../assets/cards/unionpay.png'),
  },
};

type CardType = keyof typeof Assets['card'];

type CardDetailType = {
  cvv?: number | string;
  cardNumber?: number | string;
  expiryMonth?: number | string;
  expiryYear?: number | string;
  expiry?: string;
  holderName?: string;
};

type ExampleProps = {
  cardDetail?: CardDetailType;
};

const Example = (props: ExampleProps) => {
  const {cardDetail} = props;

  const cardType: CardType = useMemo(() => {
    if (cardDetail?.cardNumber) {
      const numberValidation = CheckerCC.number(cardDetail?.cardNumber);
      return numberValidation.card?.type;
    }

    return '' as any;
  }, [cardDetail]);

  return (
   
      <CreditCard
        imageFront={Assets.images.card1}
        imageBack={Assets.images.card1}
        shiny={false}
        bar={false}
        width={width(90)}
        height={height(32)}
        bgColor={DEFAULT_IMAGE_BG_COLOR}
        mainContainerStyle={{
          borderRadius: 10,
        }}
        frontImageStyle={{
          borderRadius: 10,
        }}
        frontImageBgStyle={{
          borderRadius: 10,
        }}
        backImageStyle={{
          borderRadius: 10,
        }}
        backImageBgStyle={{
          borderRadius: 10,
        }}
        name={cardDetail?.holderName}
        number={cardDetail?.cardNumber}
        type={cardType}
        expiry={cardDetail?.expiry}
        showExpiryAfterLabel={false}
        cardTypeImages={Assets.card}
      />
    
  );
};

export default Example;


import CreditCard from 'react-native-credit-card-v2';


<CreditCard
    type={this.state.type}
    imageFront={require('./images/card-front.png')}
    imageBack={require('./images/card-back.png')}
    shiny={false}
    bar={false}
    focused={this.state.focused}
    number={this.state.number}
    name={this.state.name}
    expiry={this.state.expiry}
    cvc={this.state.cvc}/>

Available props

  • cvc: number(max 4 characters, will cut the rest)(The "/" will be automatically added)
  • name: string (max 2 lines)
  • number: credit card number(max 16 characters, will cut the rest)
  • expiry: number(max 4 characters, will cut the rest)
  • imageFront: image(image file for the card front card background -- with require)
  • imageBack: image(image file for the card back card background -- with require)
  • shiny: boolean(show sticker)
  • bar: boolean(show bar on the back)
  • focused: one of the above fields
    • type
    • name
    • number
    • expiry
    • cvc (Upon focusing cvc, the form will be rotated until this is changed.)
    • null
  • type: Available in case you need to explicitly specify the card type. In most cases this will be inferred for you as the user fills the form, so you won't need to use it. One of the following:
    • dankort
    • discover
    • mastercard
    • visa
    • amex -fullNameText: Change the default text for FULL NAME -showExpiryBeforeLabel: boolean(show the MONTH/YEAR text) -showExpiryAfterLabel: boolean(show the VALID THRU text) -expiryBeforeText: Change the default text for MONTH/YEAR -expiryAfterText: Change the default text for VALID THRU -cardTypeImages: Change card type images -mainContainerStyle: Main Container Style -frontImageStyle: Front Image Style -frontImageBgStyle: Front Image Bg Style (Used ImageBackground) -backImageStyle: Front Image Style -backImageBgStyle: Front Image Bg Style (Used ImageBackground)

Todo

  • Automated test
  • More credit card type variations

Examples

todo.

Most of the credit goes to @jessepollak and @JohnyDays for creating and mantaining Card and React Credit Card, I just ported it over to React Native.