super_qr_reader

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

super qr reader

This is a forked package from @hetian9288
super_qr_reader #
QR code (scan code / picture) recognition (AndroidView/UiKitView)
features: #

place the code inside the square frame to get the information from QR code
select QR code from your local library from the image picker inside the ScanView

Getting Started #
import 'package:super_qr_reader/scan_view.dart';

class HomePage extends StatefulWidget {
HomePage({Key key}) : super(key: key);

@override
_HomePageState createState() => new _HomePageState();
}

class _HomePageState extends State<HomePage> {
String result = '';

var scanResult;
@override
void initState() {
super.initState();
}

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Package example app'),
),
body: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
RaisedButton(
onPressed: () async {
String results = await Navigator.push( // waiting for the scan results
context,
MaterialPageRoute(
builder: (context) => ScanView(), // open the scan view
),
);

if (results != null) {
setState(() {
result = results;
});
}
},
child: Text("扫码/tap to scan"),
),
Text(result), // display the scan results
],
),
),
);
}
}
copied to clipboard
For 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.
<key>io.flutter.embedded_views_preview</key>
<string>YES</string>
copied to clipboard
And you will need provide the description of camera's permission to work properly, otherwise will crash your app.
<key>NSCameraUsageDescription</key>
<string>The porpuse explaining why you will use the camera</string>
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.