import React from 'react'; import { View, Text, Modal, ActivityIndicator } from 'react-native'; interface LoadingOverlayProps { visible: boolean; message?: string; backgroundColor?: string; } export default function LoadingOverlay({ visible, message = 'Wird geladen...', backgroundColor = 'rgba(0, 0, 0, 0.7)', }: LoadingOverlayProps) { if (!visible) return null; return ( {message} ); }