Hi Brian,
I love your videos! There is one thing that you might find useful though. When you are setting constraints for views, you always use imageView.leftAnchor.constraint(view.leftAnchor).isActive = true. I found a better method for this: NSLayoutConstraint.activate([
imageView.leftAnchor.constraint(view.leftAnchor),
...
])