The QR Code Scanner package for Appeto SDK.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

14 řádky
364 B

  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