All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.paoapps.fifi.ui.component.ConfirmationDialogDefinition.kt Maven / Gradle / Ivy

Go to download

Kotlin Multiplatform Mobile framework for optimal code sharing between iOS and Android.

There is a newer version: 0.0.31
Show newest version
package com.paoapps.fifi.ui.component

object ConfirmationDialogDefinition {
    data class Properties(
        val title: String? = null,
        val message: String? = null,
        val buttons: List>,
        val cancelLabel: String
    ) {
        data class Button(
            val label: String,
            val onClick: Event? = null,
            val role: Role = Role.DEFAULT
        )

        enum class Role {
            DEFAULT,
            DESTRUCTIVE
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy