Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

toast

import { toast } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
toast.configure();
  toast("SuccessFull!", {
        position: "top-right",
        autoClose: 5000,
        hideProgressBar: false,
        closeOnClick: true,
        pauseOnHover: true,
        draggable: true,
        progress: undefined,
      });
      
      
Source by developer.android.com #
 
PREVIOUS NEXT
Tagged: #toast
ADD COMMENT
Topic
Name
5+7 =