crystal-wallet-android/app/src/main/java/cy/agorise/crystalwallet/dialogs/material/CrystalDialog.kt

28 lines
543 B
Kotlin

package cy.agorise.crystalwallet.dialogs.material
import android.app.Activity
/*
* Dialog material that shows loading gif and and explicit message
* */
open class CrystalDialog : DialogMaterial{
constructor(activity: Activity) : super(activity) {
/*
* Prepare the dialog
* */
this.builder.title("")
this.builder.content("")
}
}
/*
* Internal interfaces
* */
interface PositiveResponse{
fun onPositive()
}
interface NegativeResponse{
fun onNegative(dialogMaterial:DialogMaterial)
}