arbiter
arbiter

Reputation: 451

Opening Specific Data Within App in Flutter with QR Code

For example, if I have a Flutter app that just scans the QR code from somewhere, can it open up, for example, a specific user within the app, with database pulled from Firestore?

Could that work within the app itself, or would I have to use, for example, Flutter Web, or some other framework (just regular HTML, CSS, JS)?

Let me know if the question isn't clear, I will explain it as best as I can if it isn't. To summarize; Have a Flutter app that scans the QR code on opening, then redirecting the user to specific database from Firestore (name: 'name', images: ['that user images']) etc. Or would you need to use any other framework to actually open a link from a website?

Upvotes: 1

Views: 867

Answers (1)

Fer Buero Trebino
Fer Buero Trebino

Reputation: 113

I'm not sure if I understand, let me know if I'm missing something.

  1. You open the app and you have a qr scanner

  2. You scan a qr code (the qr code have for example a user ID).

  3. Once you read the ID, you look for it making a call to firebase.

  4. Last, you display the info associate with the ID in firebase (user name, user image).

You can do all this using Flutter + Firebase.

Upvotes: 2

Related Questions