All Projects → bcko → Flutter_qrcode_reader

bcko / Flutter_qrcode_reader

Licence: mit
Flutter qrcode reader

Programming Languages

java
68154 projects - #9 most used programming language
dart
5743 projects

Projects that are alternatives of or similar to Flutter qrcode reader

Zxinglite
🔥 ZXing的精简版,优化扫码和生成二维码/条形码,内置闪光灯等功能。扫描风格支持:微信的线条样式,支付宝的网格样式。几句代码轻松拥有扫码功能 ,ZXingLite让集成更简单。(扫码识别速度快如微信)
Stars: ✭ 2,117 (+908.1%)
Mutual labels:  qrcode
Qr Code Bundle
Bundle for generating QR codes in Symfony
Stars: ✭ 169 (-19.52%)
Mutual labels:  qrcode
Offline Qr Code
📱 Browser add-on allowing you to quickly generate a QR code offline with the URL of the open tab or other text!
Stars: ✭ 193 (-8.1%)
Mutual labels:  qrcode
Bardecoder
Detect and decode QR Codes, written in 100% Rust.
Stars: ✭ 145 (-30.95%)
Mutual labels:  qrcode
Ngx Qrcode
An Angular 9/10 Component Library for Generating QR (Quick Response) Codes
Stars: ✭ 161 (-23.33%)
Mutual labels:  qrcode
Twofactorauth.net
.Net library for Two Factor Authentication (TFA / 2FA)
Stars: ✭ 182 (-13.33%)
Mutual labels:  qrcode
Mootool
A handy tool set for developers. 开发者常备小工具
Stars: ✭ 141 (-32.86%)
Mutual labels:  qrcode
Escpos Thermalprinter Android
Useful library to help Android developpers to print with (Bluetooth, TCP, USB) ESC/POS thermal printer.
Stars: ✭ 204 (-2.86%)
Mutual labels:  qrcode
Tc Lib Barcode
PHP library to generate linear and bidimensional barcodes
Stars: ✭ 165 (-21.43%)
Mutual labels:  qrcode
Pwa Qr Code Scanner
Lightweight progressive web app for scanning QR codes offline
Stars: ✭ 188 (-10.48%)
Mutual labels:  qrcode
Rxtool
Android开发人员不得不收集的工具类集合 | 支付宝支付 | 微信支付(统一下单) | 微信分享 | Zip4j压缩(支持分卷压缩与加密) | 一键集成UCrop选择圆形头像 | 一键集成二维码和条形码的扫描与生成 | 常用Dialog | WebView的封装可播放视频 | 仿斗鱼滑动验证码 | Toast封装 | 震动 | GPS | Location定位 | 图片缩放 | Exif 图片添加地理位置信息(经纬度) | 蛛网等级 | 颜色选择器 | ArcGis | VTPK | 编译运行一下说不定会找到惊喜
Stars: ✭ 11,567 (+5408.1%)
Mutual labels:  qrcode
Springboot
用springboot + springmvc + mybatis + maven搭建成框架,基于Jersey, Swagger,SwaggerUi的restful API
Stars: ✭ 157 (-25.24%)
Mutual labels:  qrcode
Qrcode Library
Create QrCodes with ease
Stars: ✭ 184 (-12.38%)
Mutual labels:  qrcode
Segno
Python QR Code and Micro QR Code encoder
Stars: ✭ 144 (-31.43%)
Mutual labels:  qrcode
Jsqr
A pure javascript QR code reading library. This library takes in raw images and will locate, extract and parse any QR code found within.
Stars: ✭ 2,722 (+1196.19%)
Mutual labels:  qrcode
Qrcode React
a react component to generate QRCode with logo
Stars: ✭ 142 (-32.38%)
Mutual labels:  qrcode
Unitybarcodescanner
Simple Unity Barcode Scanner
Stars: ✭ 180 (-14.29%)
Mutual labels:  qrcode
Qrcoder
A pure C# Open Source QR Code implementation
Stars: ✭ 2,794 (+1230.48%)
Mutual labels:  qrcode
Java Library Examples
💪 example of common used libraries and frameworks, programming required, don't fork man.
Stars: ✭ 204 (-2.86%)
Mutual labels:  qrcode
Nbzxing
🔥 2020年最好用的开源扫码,全方位优化,强烈推荐!! 支持多种常规zxing无法扫出的码,用就完了!! 🔥
Stars: ✭ 184 (-12.38%)
Mutual labels:  qrcode

QRCode Reader plugin for Flutter

A Flutter plugin for reading QR Codes with the camera.

Example

import 'package:qrcode_reader/qrcode_reader.dart';
Future<String> futureString = new QRCodeReader()
               .setAutoFocusIntervalInMs(200) // default 5000
               .setForceAutoFocus(true) // default false
               .setTorchEnabled(true) // default false
               .setHandlePermissions(true) // default true
               .setExecuteAfterPermissionGranted(true) // default true
               .setFrontCamera(false) // default false
               .scan();

These options are Android only (with the exception of setFrontCamera(bool)), this is the simplest way of plugin usage:

Future<String> futureString = new QRCodeReader().scan();
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].