The question is about plugin development using Kotlin UI DSL (https://plugins.jetbrains.com/docs/intellij/kotlin-ui-dsl-version-2.html)
For example, I have panel
panel {
list.forEach { item ->
row {
label(item)
}
}
}
And I want to add a button that adds an item to list. How to do that? How add row to the panel? Recreate it from scratch?