skip to Main Content

I have to develop a mobile application using flutter. The application requires the user to scan barcode, not using the phone’s camera, but using a barcode embedded on the top side of the phone. Is there a way to read the result of the scan using flutter?

I searched online but I haven’t found any solutions

2

Answers


  1. Usually these barcodes paste code directly as the keyboard. Just make sure the field that you want to fill is in focus, and you are set.

    Source: I’ve worked on apps that managed inventories, we used flutter and the approach I mentioned.

    Login or Signup to reply.
  2. You don’t have to embed anything to get barcode data from the barcode scanner machine. Press on TextInputField or TextField and then scan barcode with scanner, it will automatically get the scanned data in your text input field.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search