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

this project is build for use to document scanner easy with one click.

documentscannerchromepay #

A new Flutter project.

Features #

  1. Document scan with custom crop feature

Getting Started #

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

for use you can implement to method



import 'package:documentscannerchromepay/document_scanner_flutter.dart';

var documentimage;

void scandoc(BuildContext context)async{
  try {
    var image = await DocumentScannerChromepay.cropImageDoc(context);
    // var image = await DocumentScannerChromepay.cropImageDoc2(context);
    // var image = await DocumentScannerChromepay.cropImageDoc3(context);
    if(image!=null){
      setState(() {
        documentimage = image;
      });
    }
  } on PlatformException {
    print("notworking");
    // 'Failed to get document path or operation cancelled!';
  }
}