EmmanVazz
EmmanVazz
#17 Steps to reproduce 1. Use await CrossFingerprint.Current.AuthenticateAsync with defaults in AuthenticationRequestConfiguration. ## Expected behavior Show Password shouldn't be an option in Biometric Authentication as AllowAlternativeAuthentication is set to false...
The readme is incorrect. `public void Handle_ValueChanged(object o, int e)` should be `public void Handle_ValueChanged(object sender, SegmentedControl.FormsPlugin.Abstractions.ValueChangedEventArgs e)` as is it in https://github.com/alexrainman/SegmentedControl/blob/master/Demo/SecondPage.xaml.cs#L17 and `switch (e)` should be `switch (e.NewValue)`...
Took me a bit to realize why I wasn't progressing to the connected page. This is because the returnURL needs to be app/callback for that to happen. Should probably have...