-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
33 lines (28 loc) · 1.12 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React from 'react';
import { NativeModules, requireNativeComponent, Platform } from 'react-native';
const { AppleAuthentication } = NativeModules;
export const SignInWithAppleWhiteButton = requireNativeComponent('RNSignInWithAppleWhiteButton');
export const SignInWithAppleBlackButton = requireNativeComponent('RNSignInWithAppleBlackButton');
export const SignInWithAppleButton = (style, buttonStyle, callBack) => {
if (Platform.OS === 'ios') {
const Button = buttonStyle === "black" ? SignInWithAppleBlackButton : SignInWithAppleWhiteButton;
return (
<Button
style={style}
onPress={async () => {
await AppleAuthentication.requestAsync({
requestedScopes: [AppleAuthentication.Scope.FULL_NAME, AppleAuthentication.Scope.EMAIL],
requestedOperation: AppleAuthentication.Operation.LOGIN,
}).then((response) => {
callBack(response) //Display response
}, (error) => {
callBack(error) //Display error
});
}}
/>
);
} else {
return null
}
};
export default AppleAuthentication;