Answers for "$.toast()"

1

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
-1

jquery toastr

// Display an info toast with no title
toastr.info('Are you the 6 fingered man?')
Posted by: Guest on February-11-2021

Browse Popular Code Answers by Language