Skip to content

Instantly share code, notes, and snippets.

View go-east's full-sized avatar

Benjamin Gabay go-east

View GitHub Profile
@go-east
go-east / gist:d118c0aa1591397628f7576f3458ec42
Created January 9, 2025 12:21
Apple Signin with Amplify
import React, { useEffect } from 'react';
import { View, StyleSheet, Alert } from 'react-native';
import { AppleButton, appleAuth } from '@invertase/react-native-apple-authentication';
import { signIn, signUp, fetchAuthSession, confirmSignIn } from 'aws-amplify/auth';
import { Hub } from 'aws-amplify/utils';
interface SignInScreenProps {
navigation: any;
}