toast kotlin fragment code example
Example 1: toast in kotlin
Toast.makeText(applicationContext, "Hello", Toast.LENGTH_LONG).show()
Example 2: toast in kotlin
Toast.makeText(this, "Sign in", Toast.LENGTH_LONG).show()
Example 3: how to make a toast in a fragment kotlin
Toast.makeText(activity, "Toast", Toast.LENGTH_SHORT).show()