credit_card_flag_detector 1.0.0+6 credit_card_flag_detector: ^1.0.0+6 copied to clipboard
A package that detects credit card types based on the current credit card number patterns
import 'package:flutter/material.dart';
import 'screen.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: AddCreditCardScreen(),
);
}
}