Created
February 11, 2020 14:55
-
-
Save BapNesS/edcd2a3dc999b9305b655a147876e3dd to your computer and use it in GitHub Desktop.
Extension method to show toast for Context.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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