import * as Google from 'expo-google-app-auth';
const signInWithGoogleAsync = async () => {
const result = await Google.logInAsync({
behavior: "web",
iosClientId: 'MY_CLIENT_ID',
scopes: ['profile', 'email', 'openid'],
});
console.log( result )
}