├── .gitignore ├── .swift-version ├── LICENSE ├── README.md ├── TZStackView.podspec ├── TZStackView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── TZStackView.xcscheme ├── TZStackView ├── Info.plist ├── TZSpacerView.swift ├── TZStackView.h ├── TZStackView.swift ├── TZStackViewAlignment.swift └── TZStackViewDistribution.swift ├── TZStackViewDemo ├── AppDelegate.swift ├── ExplicitIntrinsicContentSizeView.swift ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── LaunchScreen.xib ├── NSLayoutConstraintExtension.swift └── ViewController.swift ├── TZStackViewTests ├── Info.plist ├── TZStackViewTestCase.swift ├── TZStackViewTests.swift └── TestView.swift └── assets ├── TZStackView-hide-animation.gif └── layout-example.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/README.md -------------------------------------------------------------------------------- /TZStackView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView.podspec -------------------------------------------------------------------------------- /TZStackView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TZStackView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TZStackView.xcodeproj/xcshareddata/xcschemes/TZStackView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView.xcodeproj/xcshareddata/xcschemes/TZStackView.xcscheme -------------------------------------------------------------------------------- /TZStackView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView/Info.plist -------------------------------------------------------------------------------- /TZStackView/TZSpacerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView/TZSpacerView.swift -------------------------------------------------------------------------------- /TZStackView/TZStackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView/TZStackView.h -------------------------------------------------------------------------------- /TZStackView/TZStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView/TZStackView.swift -------------------------------------------------------------------------------- /TZStackView/TZStackViewAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView/TZStackViewAlignment.swift -------------------------------------------------------------------------------- /TZStackView/TZStackViewDistribution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackView/TZStackViewDistribution.swift -------------------------------------------------------------------------------- /TZStackViewDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewDemo/AppDelegate.swift -------------------------------------------------------------------------------- /TZStackViewDemo/ExplicitIntrinsicContentSizeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewDemo/ExplicitIntrinsicContentSizeView.swift -------------------------------------------------------------------------------- /TZStackViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TZStackViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewDemo/Info.plist -------------------------------------------------------------------------------- /TZStackViewDemo/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewDemo/LaunchScreen.xib -------------------------------------------------------------------------------- /TZStackViewDemo/NSLayoutConstraintExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewDemo/NSLayoutConstraintExtension.swift -------------------------------------------------------------------------------- /TZStackViewDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewDemo/ViewController.swift -------------------------------------------------------------------------------- /TZStackViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewTests/Info.plist -------------------------------------------------------------------------------- /TZStackViewTests/TZStackViewTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewTests/TZStackViewTestCase.swift -------------------------------------------------------------------------------- /TZStackViewTests/TZStackViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewTests/TZStackViewTests.swift -------------------------------------------------------------------------------- /TZStackViewTests/TestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/TZStackViewTests/TestView.swift -------------------------------------------------------------------------------- /assets/TZStackView-hide-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/assets/TZStackView-hide-animation.gif -------------------------------------------------------------------------------- /assets/layout-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomvanzummeren/TZStackView/HEAD/assets/layout-example.png --------------------------------------------------------------------------------