It would be great if you could add a property to the Xamarin forms ZXingScannerView allowing us to know when the scanner has been set up.
You'd simply have to add these properties inside the ZXing.Net.Mobile/ZXing.Net.Mobile.Forms/ZXingScannerView.shared.cs file:
public static readonly BindableProperty HasScannerSetUpProperty =
BindableProperty.Create(nameof(HasScannerSetUp), typeof(bool), typeof(ZXingScannerView), false);
public bool HasScannerSetUp => (bool)GetValue(HasScannerSetUpProperty);
And add something like this in the OnElementChanged method of the ZXing.Net.Mobile/ZXing.Net.Mobile.Forms/ZXingScannerViewRenderer.ios.cs and ZXing.Net.Mobile/ZXing.Net.Mobile.Forms/ZXingScannerViewRenderer.android.cs` files
It would be great if you could add a property to the Xamarin forms ZXingScannerView allowing us to know when the scanner has been set up.
You'd simply have to add these properties inside the
ZXing.Net.Mobile/ZXing.Net.Mobile.Forms/ZXingScannerView.shared.cs
file:And add something like this in the
OnElementChanged
method of theZXing.Net.Mobile/ZXing.Net.Mobile.Forms/ZXingScannerViewRenderer.ios.cs
and ZXing.Net.Mobile/ZXing.Net.Mobile.Forms/ZXingScannerViewRenderer.android.cs` filesThanks for all your hard work thus far! :)