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