import { View, ActivityIndicator } from "react-native"; import { useTheme } from "../theme"; interface LoadingProps { fullScreen?: boolean; } export function Loading({ fullScreen = false }: LoadingProps) { const theme = useTheme(); return ( ); }