Nick
11/05/2020, 12:11 PMcanvas.clip(ellipse) {
    // render into clipped region
}
• Scheduler is now shutdown when app is
• New API in Behavior to control content direction mirroring
• New behavior delegate to centralize common operations
• Initial work on DSL: new view {} and container {} functions
val panel = view {
    render = {
        rect(...)
        text(...)
    }
}
val container = container {
    this += view {}
}
• Improved ergonomics for adding/removing items to Display and Container
• Changed Container from interface to concrete View, which replaces BoxDmitry Romanov [JB]
11/05/2020, 12:48 PM