I have a button, which onClicked takes to another activity. Now I want the activity to open as bottomDialog. How o do that??
if (success) {
val intent = Intent(this, PaymentActivity::class.java)
intent.putExtra("total_amount",totalAmount)
startActivity(intent)
finishAffinity()
}
I want the PaymentActivity mentioned here to be opened as bottomSheet.