Files
mariani_mobile/components/LoadingScreen.tsx
leonardo ef88c518d1 feat: add and enhance PermitsScreen and RequestPermitModal
- add LoadingScreen component
- update utilities
2025-12-15 17:20:57 +01:00

10 lines
349 B
TypeScript

import { View, Text, ActivityIndicator } from 'react-native';
export default function LoadingScreen() {
return (
<View className="flex-1 justify-center items-center bg-gray-50">
<ActivityIndicator size="large" color="#099499" />
<Text className="text-gray-500 mt-2">Caricamento...</Text>
</View>
);
}