flutter_credit_card_scanner 0.7.0 copy "flutter_credit_card_scanner: ^0.7.0" to clipboard
flutter_credit_card_scanner: ^0.7.0 copied to clipboard

A Flutter package that utilizes the device camera to scan and extract credit card information, providing a seamless and efficient way to capture card details in mobile applications.

example/lib/main.dart

import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:flutter_credit_card_scanner_example/app.dart';
import 'package:flutter_credit_card_scanner_example/firebase_options.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  // init FIREBASE
  await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);

  runApp(const MyMaterialApp());
}

class MyMaterialApp extends StatelessWidget {
  const MyMaterialApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(body: MyAppCreditCardScanner()),
    );
  }
}
15
likes
0
points
536
downloads

Publisher

verified publishersudumtech.com

Weekly Downloads

A Flutter package that utilizes the device camera to scan and extract credit card information, providing a seamless and efficient way to capture card details in mobile applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

camera, flutter, google_mlkit_text_recognition

More

Packages that depend on flutter_credit_card_scanner

Packages that implement flutter_credit_card_scanner