Hey Brian,
Upon trying to anchor the topDividerView & bottomDividerView, I run into some issues.
This is how I am anchoring them:
stackView.anchor(top: nil, left: leftAnchor, bottom: self.bottomAnchor, right: rightAnchor, paddingTop: 0, paddingLeft: 0, paddingBottom: 0, paddingRight: 0, width: 0, height: 50)
topDividerView.anchor(top: stackView.topAnchor, left: leftAnchor, bottom: nil, right: rightAnchor, paddingTop: 0, paddingLeft: 0, paddingBottom: 0, paddingRight: 0, width: 0, height: 0.5)
bottomDividerView.anchor(top: stackView.bottomAnchor, left: leftAnchor, bottom: nil, right: rightAnchor, paddingTop: 0, paddingLeft: 0, paddingBottom: 0, paddingRight: 0, width: 0, height: 0.5)
Although the dividers end up as shown in the picture below
https://ibb.co/fFfDn8
Please let me know what I am doing wrong, I tried to download and build your project but the same issue arises.
Is this an Xcode update? or have I made a mistake elsewhere
Thank you