import { ActivityIndicator, Pressable, Text, View } from "react-native"; import { useAuth } from "@/utils/AuthProvider"; export default function Index() { const { login, isLoading: authLoading } = useAuth(); if (authLoading) { return ( ); } return ( Sign in with Keycloak ); }