我希望能够使用前置摄像头扫描我的应用程序中的QR码,但是所有可用的插件仅支持主摄像头,并且没有从前置摄像头捕获的任何选项,是否有解决此问题的解决方案,主要吗?
答案 0 :(得分:0)
您可以在扫描功能的选项中对其进行配置:
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表示前置摄像头。
希望有帮助。