Created
April 21, 2021 04:12
-
-
Save KrauserHuang/f7d09568155f754056d6657dac926ab6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// AutoLayout | |
stackView.translatesAutoresizingMaskIntoConstraints = false | |
stackView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor).isActive = true | |
stackView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true | |
stackView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true | |
stackView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment