credit_card 0.1.8 copy "credit_card: ^0.1.8" to clipboard
credit_card: ^0.1.8 copied to clipboard

Functional yet beautiful Credit Card Widget with automatic card type detection.

Flutter Credit Card #

A Flutter package allows you to easily implement the Credit card's UI easily with the Card detection.

Codacy Badge

Preview #

The example app running in Android

Installing #

  1. Add dependency to pubspec.yaml

    Get the latest version in the 'Installing' tab on pub.dartlang.org

dependencies:
    credit_card: 0.1.6
copied to clipboard
  1. Import the package
import 'package:credit_card/flutter_credit_card.dart';
copied to clipboard
  1. Adding CreditCardWidget

With required parameters


    CreditCardWidget(
        cardNumber: cardNumber,
        expiryDate: expiryDate, 
        cardHolderName: cardHolderName,
        cvvCode: cvvCode,
        showBackView: isCvvFocused, //true when you want to show cvv(back) view
    ),
copied to clipboard

With optional parameters

    CreditCardWidget(
        cardNumber: cardNumber,
        expiryDate: expiryDate,
        cardHolderName: cardHolderName,
        cvvCode: cvvCode,
        showBackView: isCvvFocused,
        cardbgColor: Colors.black,
        height: 175,
        textStyle: TextStyle(color: Colors.yellowAccent),
        width: MediaQuery.of(context).size.width,
        animationDuration: Duration(milliseconds: 1000),
        ),
copied to clipboard
  1. Adding CreditCardForm
    CreditCardForm(
      themeColor: Colors.red,
      onCreditCardModelChange: (CreditCardModel data) {},
    ),
copied to clipboard

How to use #

Check out the example app in the example directory or the 'Example' tab on pub.dartlang.org for a more complete example.

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Credit #

This package's animation is inspired from from this Dribbble art. This package is basend on flutter_credit_card.

28
likes
30
points
55
downloads

Publisher

verified publishererluxman.com

Weekly Downloads

2024.09.17 - 2025.04.01

Functional yet beautiful Credit Card Widget with automatic card type detection.

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on credit_card