Last updated 7 months ago
To create a Dialog class, you should inherit it from DialogCompose from the bootstrap package.
DialogCompose
class DialogView: DialogCompose() { @Composable override fun Root() { Dialog() } } @Composable fun Dialog() { // content of dialog window }