Skip to content

Instantly share code, notes, and snippets.

@mo7amd89
Created August 23, 2022 10:38
Show Gist options
  • Save mo7amd89/4af6e658e588c037cbc2bc63a8051a60 to your computer and use it in GitHub Desktop.
Save mo7amd89/4af6e658e588c037cbc2bc63a8051a60 to your computer and use it in GitHub Desktop.
inline function koltin
import android.content.Context
import android.widget.Toast
import androidx.fragment.app.Fragment
inline fun Context.toast(message:()->String){
Toast.makeText(this, message() , Toast.LENGTH_LONG).show()
}
inline fun Fragment.toast(message:()->String){
Toast.makeText(this.context, message() , Toast.LENGTH_LONG).show()
}
// =>>>
/*
toast {
"Hello World"
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment