import Styles from "@/constants/Styles"; import { View } from "react-native"; import Toast from "react-native-toast-message"; import Text from "./Text"; export default function ToastCustom({ position }: { position?: 'top' | 'bottom' }) { return ( Toast.hide()} visibilityTime={1500} position={position || 'bottom'} config={{ small: ({ text1 }) => ( {text1} ) }} /> ) }