Tomas Kormanak
11/06/2020, 5:51 PMLazyStackPanel
to allow lazy instantiation of components.
Something like this:
init {
lazyStackPanel {
add({ /* factory function */ })
}
}
fun add (builder: () -> Component)
Component will be created when child is activated.
What do you think?