You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
364B

  1. #import "FlutterQrPlugin.h"
  2. #if __has_include(<qr_code_scanner/qr_code_scanner-Swift.h>)
  3. #import <qr_code_scanner/qr_code_scanner-Swift.h>
  4. #else
  5. #import "qr_code_scanner-Swift.h"
  6. #endif
  7. @implementation FlutterQrPlugin
  8. + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
  9. [SwiftFlutterQrPlugin registerWithRegistrar:registrar];
  10. }
  11. @end