1 2 3 4 5 6 7 8 9
import { ActivityIndicator, View } from "react-native"; export default function FullPageSpinner() { return ( <View className="h-full w-full items-center justify-center bg-gray-100 dark:bg-background"> <ActivityIndicator /> </View> ); }