Start trying to support Microsoft Azure Sign in

This commit is contained in:
2025-03-06 16:55:13 -06:00
parent 84cae666bf
commit 9f13d0357a
7 changed files with 167 additions and 11 deletions

View File

@@ -2,7 +2,8 @@ import React, { useState, useEffect } from 'react';
import { Alert, StyleSheet, AppState, Image, Platform } from 'react-native';
import { supabase } from '@/lib/supabase';
import { ThemedView, ThemedText, ThemedTextButton, ThemedTextInput } from '@/components/theme';
import AppleSignInButton from '@/components/auth/AppleSignIn.native';
import AppleSignInButton from '@/components/auth/AppleSignIniOS';
import AzureSignIn from './AzureSignIn';
// Tells Supabase Auth to continuously refresh the session automatically if
// the app is in the foreground. When this is added, you will continue to receive
@@ -103,6 +104,7 @@ const Auth = () => {
/>
</ThemedView>
<AppleSignInButton />
<AzureSignIn />
</ThemedView>
);
};