Flutter Credit Card
A Flutter package allows you to easily implement the Credit card's UI easily with the Card detection.
Installing
- Add dependency to
pubspec.yaml
Get the latest version in the 'Installing' tab on pub.dartlang.org
- Import the package
- 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 ),
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),
),