Answers for "toast #"

3

toast

val text = "Hello toast!"
val duration = Toast.LENGTH_SHORT

val toast = Toast.makeText(applicationContext, text, duration)
toast.show()
Posted by: Guest on October-19-2021
0

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,
      });
Posted by: Guest on April-10-2022

Browse Popular Code Answers by Language