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