I was looking at the view DSL, and it looks like y...
# doodle
a
I was looking at the view DSL, and it looks like you can't add any children or layouts with it, since they aren't exposed. Is there a reason for that or is it just not currently a feature? Also, is there any reason why
ViewBuilder
has the
render_
property? It looks redundant. edit: I found the container DSL by chance, and it can add children and layouts. This doesn't have to be part of the api, but I think it would be nice to not have to use
this
when adding views:
Copy code
container {
    +myView
    +view {
        render = { doFunStuff() }
    }
}
👍 1