AlertControllerFactory

Types

Link copied to clipboard
data class AlertProps(val title: String? = null, val message: String? = null, val actionTitle: String? = null, val closeActionTitle: String = "Done", val action: () -> Unit? = null, val onClose: () -> Unit? = null)

Functions

Link copied to clipboard
fun make(context: Context, title: String? = null, message: String? = null, actionTitle: String? = null, closeActionTitle: String = "Done", action: () -> Unit? = null, onClose: () -> Unit? = null): AlertDialog