Skip to content

Instantly share code, notes, and snippets.

@BapNesS
Created February 11, 2020 14:55
Show Gist options
  • Save BapNesS/edcd2a3dc999b9305b655a147876e3dd to your computer and use it in GitHub Desktop.
Save BapNesS/edcd2a3dc999b9305b655a147876e3dd to your computer and use it in GitHub Desktop.
Extension method to show toast for Context.
/**
* Extension method to show toast for Context.
*/
fun Context?.toast(@StringRes textId: Int, duration: Int = Toast.LENGTH_SHORT) = this?.let { Toast.makeText(it, textId, duration).show() }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment