Initial commit

This commit is contained in:
2026-09-10 14:08:41 +02:00
commit f12ad18e92
74 changed files with 21214 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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="#1071C2" />
<Text className="text-gray-500 mt-2">Caricamento...</Text>
</View>
);
}