import React from 'react'; import { ToastProvider, Button, useToast, VStack } from '@native-base/v3'; export default function () { const toast = useToast(); return ( <> { toast({ position: 'top', title: 'Top Toast', }); }} > Top { toast({ position: 'center', title: 'Center', }); }} > Center { toast({ title: 'Bottom', }); }} > Bottom > ); }