SOLUTION
fun Context.showToastOnTOP(message: String) = Toast.makeText(this, message, Toast.LENGTH_SHORT) .apply { setGravity(Gravity.TOP, 0, 0); show() }fun Context.showToastOnBOTTOM(message: String) = Toast.makeText(this, message, Toast.LENGTH_SHORT) .apply { setGravity(Gravity.BOTTOM, 0, 0); show() }
Important note Gravity
will only work if your app target max 29 or less.
Chill Pill :)