Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created November 3, 2017 13:05
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 juucustodio/48d6fa741518694462fc3d46d4cff7da to your computer and use it in GitHub Desktop.
Save juucustodio/48d6fa741518694462fc3d46d4cff7da to your computer and use it in GitHub Desktop.
Exemplo de como criar um barcode scanner com Xamarin.Forms http://julianocustodio.com/scanner
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());
//Inicializa o Zxing no iOS
ZXing.Net.Mobile.Forms.iOS.Platform.Init();
return base.FinishedLaunching(app, options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment