Flutter - 如何使用前置摄像头扫描二维码?
Flutter - How to scan QR code with front camera?
我希望能够使用前置摄像头扫描我的应用程序中的二维码,但所有可用的插件仅支持主摄像头并且没有任何从前置摄像头捕获的选项,是否有解决此问题的方法同时?
您可以在扫描功能的选项中配置:
Future scan() async {
print("Scanning!!!");
try {
String barcode = await BarcodeScanner.scan(
options: ScanOptions(
useCamera: 1,
)
).then((value) { return value.rawContent;});
setState(() => this.barcode = barcode);
} catch (e) {
if (e.code == BarcodeScanner.cameraAccessDenied) {
setState(() {
this.barcode = 'The user did not grant the camera permission!';
});
} else {
setState(() => this.barcode = 'Unknown error: $e');
}
}
}
在ScanOptions中useCamera 属性中使用数字1表示前置摄像头。
希望对您有所帮助。
我希望能够使用前置摄像头扫描我的应用程序中的二维码,但所有可用的插件仅支持主摄像头并且没有任何从前置摄像头捕获的选项,是否有解决此问题的方法同时?
您可以在扫描功能的选项中配置:
Future scan() async {
print("Scanning!!!");
try {
String barcode = await BarcodeScanner.scan(
options: ScanOptions(
useCamera: 1,
)
).then((value) { return value.rawContent;});
setState(() => this.barcode = barcode);
} catch (e) {
if (e.code == BarcodeScanner.cameraAccessDenied) {
setState(() {
this.barcode = 'The user did not grant the camera permission!';
});
} else {
setState(() => this.barcode = 'Unknown error: $e');
}
}
}
在ScanOptions中useCamera 属性中使用数字1表示前置摄像头。
希望对您有所帮助。