bank_card_widget 0.0.3
bank_card_widget: ^0.0.3 copied to clipboard
A customizable and reusable bank card widget for Flutter with various styling options.
Bank Card Widget #
A customizable and reusable bank card widget for Flutter with various styling options.
Screenshots #

Features #
- Customizable Appearance - Easily customize colors, fonts, and layout.
- Responsive Design - Adapts to different screen sizes (Note: Current implementation uses fixed size, will be improved).
- Flexible Styling - Use the
BankCardStyleclass for comprehensive styling.
Installation #
Add this to your package's pubspec.yaml file:
dependencies:
bank_card_widget: any
Then run:
flutter pub get
Usage #
Basic Usage #
import 'package:bank_card_widget/bank_card_widget.dart';
BankCardWidget(
cardNumber: '1234 5678 9010 1234',
cardHolderName: 'JOHN DOE',
expiryDate: '12/24',
cvv: '123',
cardColor: Colors.blue.shade700,
textColor: Colors.white,
)
Using Modal Bottom Sheet #
import 'package:bank_card_widget/bank_card_widget.dart';
void _showBankCard() {
showBankCardWidget(
context: context,
cardNumber: '1234 5678 9010 1234',
cardHolderName: 'JOHN DOE',
expiryDate: '12/24',
cvv: '123',
cardColor: Theme.of(context).brightness == Brightness.dark ? Colors.black87 : Colors.blue.shade700,
textColor: Colors.white,
);
}
Custom Styling #
import 'package:bank_card_widget/bank_card_widget.dart';
BankCardWidget(
cardNumber: '5678 1234 9010 1234',
cardHolderName: 'JANE SMITH',
expiryDate: '10/25',
cvv: '456',
cardColor: Colors.green.shade700,
textColor: Colors.white,
style: BankCardStyle(
cornerRadius: 10.0,
cardNumberTextStyle: TextStyle(
fontSize: 22,
fontWeight: FontWeight.normal,
letterSpacing: 3.0,
color: Colors.yellowAccent,
),
),
)
See the example app for more styling options.
Contributing #
Contributions are welcome! Please feel free to submit a Pull Request.
License #
This project is licensed under the MIT License - see the LICENSE file for details.