Author
Travis Kirton


Background Color

You can set the background color for any view… Even images (whose content fills the frame).

view.backgroundColor = red

Example

let c = Circle(center: canvas.center, radius: 150)
c.backgroundColor = C4Pink
canvas.add(c)