Use application context to create toast (#7756)

This commit is contained in:
Ivan Iskandar 2022-08-14 19:44:24 +07:00 committed by GitHub
parent 5f378e28b6
commit b0520df1dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,7 +69,7 @@ fun Context.toast(@StringRes resource: Int, duration: Int = Toast.LENGTH_SHORT,
* @param duration the duration of the toast. Defaults to short.
*/
fun Context.toast(text: String?, duration: Int = Toast.LENGTH_SHORT, block: (Toast) -> Unit = {}): Toast {
return Toast.makeText(this, text.orEmpty(), duration).also {
return Toast.makeText(applicationContext, text.orEmpty(), duration).also {
block(it)
it.show()
}