Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created August 22, 2018 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfversluis/59455d5a21f9d76a26f414b8a6f6e5ec to your computer and use it in GitHub Desktop.
Save jfversluis/59455d5a21f9d76a26f414b8a6f6e5ec to your computer and use it in GitHub Desktop.
Handling the barcode result
public void Handle_OnScanResult(Result result)
{
Device.BeginInvokeOnMainThread(async () =>
{
await DisplayAlert("Scanned result", result.Text, "OK");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment