I am going to implement `LazyStackPanel` to allow ...
# kvision
t
I am going to implement
LazyStackPanel
to allow lazy instantiation of components. Something like this:
Copy code
init {
    lazyStackPanel {
        add({ /* factory function */ })
    }
}

fun add (builder: () -> Component)
Component will be created when child is activated. What do you think?