feat: Add document scanner package

This commit is contained in:
Anton Stubenbord
2023-02-22 18:17:50 +01:00
parent a8a41b38a8
commit 9c5a45f329
105 changed files with 3998 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#import "SimpleEdgeDetectionPlugin.h"
#if __has_include(<paperless_document_scanner/paperless_document_scanner-Swift.h>)
#import <paperless_document_scanner/paperless_document_scanner-Swift.h>
#else
// Support project import fallback if the generated compatibility header
// is not copied when this plugin is created as a library.
// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
#import "paperless_document_scanner-Swift.h"
#endif
@implementation SimpleEdgeDetectionPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftSimpleEdgeDetectionPlugin registerWithRegistrar:registrar];
}
@end