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

outdated

A new flutter plugin project.

flutter_document_scanner #

A plugin for Flutter apps that adds document scanning functionality on Android.

Getting Started #

TBD

How to use ? #

first add as a dependency in pubspec.yaml

import:

import 'package:document_scanner/document_scanner.dart';

then use it as a widget:

DocumentScanner(
    onPictureTaken: (String image) {
        print("document : " + image);
    },
                          
)

License #

This project is licensed under the MIT License - see the LICENSE.md file for details