├── .gitignore ├── .swift-version ├── Arranged.podspec ├── Arranged.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Arranged iOS.xcscheme │ └── Arranged tvOS.xcscheme ├── Arranged.xcworkspace └── contents.xcworkspacedata ├── CHANGELOG.md ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Example.xcworkspace │ └── contents.xcworkspacedata ├── Example │ ├── Adapter.swift │ ├── AppDelegate.swift │ ├── ArrangedViewController.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── tabBarIcon.imageset │ │ │ ├── Contents.json │ │ │ └── tabBarIcon.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── BaseStackViewController.swift │ ├── Info.plist │ ├── Picker.swift │ └── StackViewController.swift └── Podfile ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── AlignedLayoutArrangement.swift ├── DistributionLayoutArrangement.swift ├── Internal.swift ├── LayoutArrangement.swift └── StackView.swift ├── Supporting └── Info.plist └── Tests ├── Adapter.swift ├── Configuration.swift ├── Info.plist ├── Internal.swift ├── LayoutTests.swift └── SubviewsManagementTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 - 2 | -------------------------------------------------------------------------------- /Arranged.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Arranged.podspec -------------------------------------------------------------------------------- /Arranged.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Arranged.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Arranged.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Arranged.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Arranged.xcodeproj/xcshareddata/xcschemes/Arranged iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Arranged.xcodeproj/xcshareddata/xcschemes/Arranged iOS.xcscheme -------------------------------------------------------------------------------- /Arranged.xcodeproj/xcshareddata/xcschemes/Arranged tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Arranged.xcodeproj/xcshareddata/xcschemes/Arranged tvOS.xcscheme -------------------------------------------------------------------------------- /Arranged.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Arranged.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example/Adapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/Adapter.swift -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/ArrangedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/ArrangedViewController.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/tabBarIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/Assets.xcassets/tabBarIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/tabBarIcon.imageset/tabBarIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/Assets.xcassets/tabBarIcon.imageset/tabBarIcon.png -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/BaseStackViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/BaseStackViewController.swift -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/Picker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/Picker.swift -------------------------------------------------------------------------------- /Example/Example/StackViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Example/StackViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Example/Podfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AlignedLayoutArrangement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Sources/AlignedLayoutArrangement.swift -------------------------------------------------------------------------------- /Sources/DistributionLayoutArrangement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Sources/DistributionLayoutArrangement.swift -------------------------------------------------------------------------------- /Sources/Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Sources/Internal.swift -------------------------------------------------------------------------------- /Sources/LayoutArrangement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Sources/LayoutArrangement.swift -------------------------------------------------------------------------------- /Sources/StackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Sources/StackView.swift -------------------------------------------------------------------------------- /Supporting/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Supporting/Info.plist -------------------------------------------------------------------------------- /Tests/Adapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Tests/Adapter.swift -------------------------------------------------------------------------------- /Tests/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Tests/Configuration.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Tests/Internal.swift -------------------------------------------------------------------------------- /Tests/LayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Tests/LayoutTests.swift -------------------------------------------------------------------------------- /Tests/SubviewsManagementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kean/Arranged/HEAD/Tests/SubviewsManagementTests.swift --------------------------------------------------------------------------------