Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Latest commit

 

History

History
27 lines (18 loc) · 592 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 592 Bytes

DEPRECATED

This repo is deprecated; please use the new mono repo https://github.com/woodemi/quick.flutter

quick_scan

A flutter plugin for scanning QR codes, as quick as adding a Widget

Getting Started

CAUTION: Check permission by yourself

Widget build(BuildContext context) {
  return ScanView(
    callback: (String result) {
      print('scanResult $result');
    },
  );
}

Setup

iOS

Opt-in to the embedded views preview by adding a boolean property to the app's Info.plist file with the key io.flutter.embedded_views_preview and the value YES.