Tuân
Tuân

Reputation: 11

Camera Scan Qr in flutter windows webview

I'm trying to implementing a scan qr feature on flutter windows.

Since camera_windows does not provide stream image so i switched to another solution is using webview but i don't know where to start, has anyone done this before, if so please give me some hint. Thanks in advance!

Upvotes: 0

Views: 34

Answers (1)

yushulx
yushulx

Reputation: 12160

You don't need to use webview.

Try the example code located under https://github.com/yushulx/flutter_camera_windows. It supports barcode scanning with flutter_barcode_sdk. I modified the official camera windows plugin to provide stream images.

Additionally, I published a lightweight camera plugin for Windows, Linux and macOS: flutter_lite_camera. The plugin also contains a barcode detection example.

enter image description here

Upvotes: 0

Related Questions