qr_auto_fill_form 1.1.1 copy "qr_auto_fill_form: ^1.1.1" to clipboard
qr_auto_fill_form: ^1.1.1 copied to clipboard

A customizable Flutter package to scan QR codes and auto-fill form fields.

qr_auto_fill_form #

pub package License: MIT GitHub Repo stars


✨ Overview #

qr_auto_fill_form is a customizable Flutter package that lets users scan QR codes and automatically populate form fields with the decoded data. Ideal for forms in onboarding, vehicle rental, check-ins, ID entry, or automated data collection workflows.


πŸš€ Features #

  • βœ… Full-screen, professional QR scanner screen
  • βœ… Auto-fills text fields based on scanned QR JSON data
  • βœ… Generate QR-ready data (JSON or keyValue) to use in any QR code generator
  • βœ… Copy or display QR data for reuse or sharing
  • βœ… Supports clearing fields before scan
  • βœ… Optional confirmation dialog before applying scanned data
  • βœ… Easy integration into existing forms
  • βœ… Supports field-level transformations and validation hooks
  • βœ… Works out-of-the-box with TextEditingControllers

πŸ“¦ Installation #

Add the following to your pubspec.yaml:

dependencies:
  qr_auto_fill_form: ^1.1.1

πŸ› οΈ Usage #

1. Register your form fields #

final qrFormController = QRFormAutoFillController();

@override
void initState() {
  super.initState();

  qrFormController.registerField('name', nameController);
  qrFormController.registerField('email', emailController);
  qrFormController.registerField('numbers', numberController);
  qrFormController.registerField('profession', professionController);
}

2. Trigger QR scan and auto-fill #

ElevatedButton(
  onPressed: () {
    launchQRFormScanner(
      context: context,
      controller: qrFormController,
      onBeforeScan: () {
        nameController.clear();
        emailController.clear();
        licenseController.clear();
        carController.clear();
      },
      showConfirmation: true,
      confirmTitle: 'Auto-Fill Form',
      confirmContent: 'Do you want to use this scanned data?',
    );
  },
  child: const Text('Scan & Fill'),
);

3. Generate QR-ready data (JSON or keyValue) to use in any QR code generator #

You can also generate a QR string (JSON or key-value) from currently entered form data:

final data = qrFormController.generateQRData(
  format: QRDataFormat.json, // or QRDataFormat.keyValue
);

πŸ“‹ Pro Tip: #

Even if you don’t want to use a visual QR code, you can still show the formatted string and let users:

Copy it Share it via apps like WhatsApp/Email Store it in a database

πŸ”„ Example QR JSON #

{ "name": "ABC", "email": "ab.dev.pk@gmail.com", "numbers": 123, "profession": "Development" }

πŸ”„ Example keyValue #

name=ABC;email=ab.dev.pk@gmail.com;numbers=123;profession=Development

πŸ“„ License #

This project is licensed under the MIT License. Copyright Β© 2024 Abou Bakar

4
likes
150
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable Flutter package to scan QR codes and auto-fill form fields.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, qr_code_scanner_plus

More

Packages that depend on qr_auto_fill_form