Interface AppleSignInCallback
public interface AppleSignInCallback
Callback for
AppleSignIn.signIn(String, AppleSignInCallback). Implement
the three terminal outcomes -- success, error, cancellation -- so the
caller can tell user-intent (cancel) apart from a real failure.- Since:
- 7.0.245
-
Method Summary
Modifier and TypeMethodDescriptionvoidonCancel()User dismissed the sheet without completing.voidA network or protocol error occurred.voidonSuccess(AppleSignInResult result) User completed the sheet successfully.
-
Method Details
-
onSuccess
User completed the sheet successfully. -
onError
A network or protocol error occurred.erroris a short human-readable string (may benullif the underlying layer did not provide one). -
onCancel
void onCancel()User dismissed the sheet without completing.
-