JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 34
  • Score
    100M100P100Q58326F
  • License Mozilla Public License 2.0

capacitor plugin to scan qr codes with ionic

Package Exports

  • capacitor_qrcode

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (capacitor_qrcode) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

capacitor_qrcode

Desarollo de un plugin capacitor para detectar codigos qr.

Este desarrollo adapta el ejemplo de google vision del repositorio https://github.com/googlesamples/android-vision a capacitor para ser utilizado por una aplicación hecha en ionic.

Instalación

npm i capacitor_qrcode -s

Usage

ANDROID And IOS

import 'capacitor_qrcode'; import { Plugins } from '@capacitor/core';

const { QRCodePlugin} = Plugins;

async openQr() { const code = await QRCodePlugin.getCodeQR(); alert(code); }