• Stars
    star
    233
  • Rank 168,542 (Top 4 %)
  • Language
    Java
  • License
    MIT License
  • Created almost 7 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Flutter qrcode reader

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();

More Repositories

1

Ud-ISDC-SelfDrivingCarSimulation

Udacity Intro to Self-Driving Car Nanodegree Project : Joy Ride (Simple Self-Driving Car Simulation)
HTML
11
star
2

Ud-ISDC-2DHistogramFilter-Cpp

Udacity Intro to Self-Driving Cars Nanodegree Project : 2D Histogram Filter in C++
C++
8
star
3

Ud-FS-LogsAnalysis-Python

Udacity Full Stack Web Developer Nanodegree Project : Logs Analysis in Python Postgresql
Python
4
star
4

Ud-FE-PixelArtMaker-JS

Udacity Front-End Web Developer Nanodegree Project : Pixel Art Maker in Javascript
JavaScript
4
star
5

Ud-DA-Tableau-Titanic

Udacity Data Analyst Nanodegree Project : Create a Tableau Story - Titanic Data
3
star
6

Ud-FE-AnimalTradingCards

Udacity Front-End Web Developer Nanodegree Project : Animal Trading Cards
HTML
2
star
7

Ud-LinearAlgebra-Vector

Udacity Linear Algebra Course : Vector class
Python
2
star
8

Ud-ISDC-Matrix-Python

Udacity Intro to Self-Driving Cars Nanodegree Project : Matrix Class in Python
HTML
2
star
9

Ud-FS-Catalog-Flask

Udacity Full Stack Web Developer Nanodegree Project : Build an Item Catalog Application with Python Flask
Python
2
star
10

Ud-FS-LinuxServerConfig-LightSail

Udacity Full Stack Web Developer Nanodegree Project : Linux Server Configuration with Amazon LightSail
2
star
11

Ud-DA-EDA-WhiteWineQuality

Udacity Data Analyst Nanodegree Project : Exploratory Data Analysis : White Wine Quality dataset
HTML
1
star
12

bcko

profile README
1
star
13

todo-API

todo REST API with node.js, express.js, redis
JavaScript
1
star
14

Ud-DA-DataWrangling

Udacity Data Analyst Nanodegree Project : Wrangle and Analyze Data
Jupyter Notebook
1
star
15

Ud-DA-StroopEffect

Udacity Data Analyst Nanodegree Project : Test a Perceptual Phenomenon (Stroop Effect)
HTML
1
star