flutter_credit_card_container 0.0.1 copy "flutter_credit_card_container: ^0.0.1" to clipboard
flutter_credit_card_container: ^0.0.1 copied to clipboard

Simple Flutter Credit Card Container

Flutter Credit Card #

Flutter Credit Card package lets you add beautiful credit card to your flutter app.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  fluttercreditcard: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:fluttercreditcard/fluttercreditcard.dart';

<<<<<<< HEAD

Example #

There are a number of properties that you can modify:

  • height
  • width
  • cradHolderName
  • cardNumber
  • backgroundColor
  • fontColor
  • cvvNumber #

Example #

There are a number of properties that you can modify:

  • height
  • width
  • cradHolderName
  • cardNumber
  • backgroundColor
  • fontColor
  • cvvNumber

d61cd3c30a6c503d40c4df3ac5f3b72657c8d0ec


class FlutterCreditCard extends StatelessWidget {  
  const FlutterCreditCard({Key? key}) : super(key: key);  
  
  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: Center(  
        child: const FlutterCreditCard(
        cardHolderName: "Flutter Demo",
        cardNumber: "123456789101",
        cvvNumber: 301,
        startMonth: 04,
        startYears: 23,
        endMonth: 04,
        endYears: 26,
      ),
      ),  
    );  
  }  
}
5
likes
0
pub points
28%
popularity

Publisher

unverified uploader

Simple Flutter Credit Card Container

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_credit_card_container