I my app I want to have a field were the user just can scan a tag (like NFC) with there phone.
It’s basically like scanning a chip in a dog to recognise the dog. (Hope this is clear) Application is similar.
The value of the tag should be the filled in the TAG field.
So I just created a text field but when I select that and hold my phone to the nfc tag nothing happens (which is a bit expected because I never indicated that the NFC scanner needs to be on)
I do not believe Glide can interact with the device’s NFC capabilities. You would need some kind of bar code integration to implement scanning to enter information in this manner.
Anyone out there found a way to get this working .
Basically I have 90% of the app working as we want. Just some finetuning.
But the NFC (idea which was added in the end now we see what we can do with the app) will be a game changer.
So any help here would be welcome
Put something in your app telling the user to replace their keyboard with a different one if they want to be able to scan nfc tags. You could created a vetted list of approved apps that you recommend to make it easier on the user. The user is going to need to decide if they want to install a third party keyboard app or not. It’s a keyboard used by their entire device, so it has to be their choice.
Use a text entry component to receive the tag info. Let the keyboard do the scanning and it would fill the text entry as if the user typed it.
Nothing I’ve personally done. Seems pretty self explanatory though. Scanning a tag would take the info from the tag and write it out as if someone typed it by hand.
I tried to build something using the Custom AI component, but I’m pretty sure that the iframe nature of the AI component blocks access to the Web NFC API, so there is no in-app workaround unless Glide builds a native component for this that doesn’t live inside an iframe. Would be easy to build something on its own independent website, but not something that lives within Glide and seemlessly interacts with your data. So at this point, either Glide builds a native tag reader component or functionality, or you go with the third party keyboard idea.
Thanks Jeff for clear explaination. I’ll discuss with the users but at least we have a way to approach it. I hope Glide will one day make this possible.