Dialogs

To create a Dialog class, you should inherit it from DialogCompose from the bootstrap package.


class DialogView: DialogCompose()
{
    @Composable
    override fun Root()
    {
        Dialog()
    }
}

@Composable
fun Dialog()
{
    // content of dialog window
}

Last updated