All Projects â†’ denizsubasi â†’ CCView

denizsubasi / CCView

Licence: other
💳 Ready made credit card creation library. 💳

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to CCView

Live-cc-checker
This script will check live cc and Grab proxy and check proxy if its working or not
Stars: ✭ 37 (-11.9%)
Mutual labels:  credit-card, creditcard
ng-payment-card
💳 Responsive credit card component for Angular.
Stars: ✭ 27 (-35.71%)
Mutual labels:  credit-card, creditcard
Swipeablecard
A simple implementation of swipe card like StreetView
Stars: ✭ 812 (+1833.33%)
Mutual labels:  credit-card, android-ui
PaymentCardView
Custom Credit/Debit card view
Stars: ✭ 62 (+47.62%)
Mutual labels:  credit-card, android-ui
Cleave.js
Format input text content when you are typing...
Stars: ✭ 17,098 (+40609.52%)
Mutual labels:  credit-card, creditcard
Vue Interactive Paycard
Credit card form with smooth and sweet micro-interactions
Stars: ✭ 5,451 (+12878.57%)
Mutual labels:  credit-card, creditcard
Creditcardform Ios
CreditCardForm is iOS framework that allows developers to create the UI which replicates an actual Credit Card.
Stars: ✭ 1,431 (+3307.14%)
Mutual labels:  credit-card, creditcardform
Cc Checker
A Credit/Debit Checker
Stars: ✭ 129 (+207.14%)
Mutual labels:  credit-card
React Interactive Paycard
Interactive React Paycard
Stars: ✭ 2,129 (+4969.05%)
Mutual labels:  credit-card
J2pay
Multi-gateway payment processing library for java
Stars: ✭ 125 (+197.62%)
Mutual labels:  credit-card
React Native Paystack
React Native Wrapper for the Paystack Native Mobile SDKs
Stars: ✭ 106 (+152.38%)
Mutual labels:  credit-card
Php Banks Db
PHP library for getting bank info (name, brand color etc) by first digits of card's number
Stars: ✭ 133 (+216.67%)
Mutual labels:  credit-card
Yrpayment
Better payment user experience library with cool animation in Swift
Stars: ✭ 176 (+319.05%)
Mutual labels:  credit-card
Ngx Validators
Validator library for Angular 2+
Stars: ✭ 128 (+204.76%)
Mutual labels:  credit-card
Stringformatter
Simple Text Formetter (Credit Card Number, Phone Number, Serial Number etc.) Can be used in all text inputs according to the format pattern. If desired, large minor character restrictions can be made in the format pattern.
Stars: ✭ 231 (+450%)
Mutual labels:  credit-card
Transbank Web Services
Transbank Web Services SDK. Webpay OneClick, PatPass y Transacción Normal
Stars: ✭ 115 (+173.81%)
Mutual labels:  credit-card
iOS-CreditCardForm
Small credit card form demo app
Stars: ✭ 33 (-21.43%)
Mutual labels:  credit-card
Svg Credit Card Payment Icons
SVG Credit Card & Payment Icons: 6 Styles, 80 Icons
Stars: ✭ 227 (+440.48%)
Mutual labels:  credit-card
Offset
Offset payment engine
Stars: ✭ 152 (+261.9%)
Mutual labels:  credit-card
Credit Card
Credit Card Validation
Stars: ✭ 150 (+257.14%)
Mutual labels:  credit-card

Check this cool ui at Dribbble

CCView

CCView is a ready made credit card creation library.

Features

  • Auto selection card type based on the credit card number pattern.
  • Auto selection of logo drawable based on the credit card type Visa, Mastercard, American Express, Discover Card
  • Card number, cvv and expiry date validation.
  • 4 different card formats.
  • Edit actual credit card.

Usage

startActivityForResult(AddCreditCardActivity.newIntent(context = this), REQUEST_CODE)
// If you want to edit selected credit card
startActivityForResult(AddCreditCardActivity.newIntent(context = this,creditCardItem = creditCardItem), REQUEST_CODE)
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
   if (requestCode == REQUEST_CODE && resultCode == Activity.RESULT_OK) {
            creditCardItem = data?.extras?.getParcelable<CreditCardItem>(AddCreditCardActivity.KEY_CREDIT_CARD)
    }
}

Dependency

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

dependencies {
    implementation 'com.github.denizsubasi:CCView:0.3'
}

License

Copyright 2020 Deniz Subaşı

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].