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

commonMain.com.soywiz.korui.UiMenu.kt Maven / Gradle / Ivy

There is a newer version: 4.0.10
Show newest version
package com.soywiz.korui

import com.soywiz.korim.bitmap.*

data class UiMenu(val children: List) {
    constructor(vararg children: UiMenuItem) : this(children.toList())
}
data class UiMenuItem(val text: String, val children: List? = null, val icon: Bitmap? = null, val action: () -> Unit = {}) {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy