Created
March 27, 2019 10:36
-
-
Save DenTelezhkin/9bfb99ae8a65e9ac3621fbc4fbe594c0 to your computer and use it in GitHub Desktop.
StackView example for MLSDev blog article
This file contains 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
let stacks = [UserProfileStatsView(), SwitchCompanyView(), SendInvitationToCompanyView(), LogoutButtonView()] | |
stackView.axis = .Vertical | |
stacks.forEach { | |
stackView.addArrangedSubview($0) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment