Hi @Anonymous!
I would create a hidden TextInput control, then have its default value set to
BarcodeScanner1.Value
Then I would have the OnChange property set to:
If(
BarcodeScanner1.Value = 1,
Navigate(ScreenName1, transition.none),
BarcodeScanner1.Value = 2,
Navigate(ScreenName2, transition.none),
BarcodeScanner1.Value = 3,
Navigate(ScreenName3, transition.none)
)
Initially make the TextInput visible so that you can confirm the QR codes are returning the correct values,
Could you give that a try and let me know if that's helped?
Thanks!
Sancho