├── .github └── workflows │ ├── CocoaPodsRelease.yml │ └── swift.yml ├── .gitignore ├── Demo_MondrianLayout ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Book.Background.swift ├── Book.Classic.swift ├── Book.HStackBlock.swift ├── Book.LayoutContainer.swift ├── Book.Manager.swift ├── Book.Mondrian.swift ├── Book.Overlay.swift ├── Book.RelativeBlock.swift ├── Book.SafeArea.swift ├── Book.Sizing.swift ├── Book.VGridBlock.swift ├── Book.VStackBlock.swift ├── Book.ViewController.swift ├── Book.ZStackBlock.swift ├── Book.swift ├── CGSize+.swift ├── ExampleView.swift ├── Extensions.swift ├── Info.plist ├── InstagramPostView.swift ├── RootContainerViewController.swift ├── SwiftUIComparison.swift └── UIColor+Mondrian.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── MondrianLayout.podspec ├── MondrianLayout.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── Demo_MondrianLayout.xcscheme │ ├── MondrianLayout.xcscheme │ ├── Tests-Record.xcscheme │ └── Tests.xcscheme ├── MondrianLayout ├── Classic │ ├── LayoutDescriptor.swift │ └── MondrianArrayBuilder.swift ├── Descriptors │ ├── DimensionDescriptor.swift │ ├── Edge.swift │ ├── LayoutBuilderContext.swift │ ├── Optimization.swift │ ├── VHStackContentBuilder.swift │ ├── _LayoutBlockNode.swift │ └── _LayoutBlockType.swift ├── EntryPoint.swift ├── Extensions │ ├── NSLayoutConstraint+.swift │ ├── UILayoutGuide+Mondrian.swift │ └── UIView+Mondrian.swift ├── Internal │ ├── Utils.swift │ └── _LayoutElement.swift ├── LayoutBlocks │ ├── BackgroundBlock.swift │ ├── HStackBlock.swift │ ├── LayoutContainer.swift │ ├── LayoutGuideBlock.swift │ ├── OverlayBlock.swift │ ├── RelativeBlock.swift │ ├── StackingSpacer.swift │ ├── VGridBlock.swift │ ├── VStackBlock.swift │ ├── ViewBlock.swift │ └── ZStackBlock.swift ├── Manager │ └── LayoutManager.swift └── MondrianNamespace.swift ├── Package.swift ├── README.md ├── RevealServer.xcframework ├── Info.plist ├── Scripts │ └── integrate_revealserver.sh ├── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeRequirements-1 │ ├── CodeResources │ └── CodeSignature ├── ios-arm64_armv7 │ └── RevealServer.framework │ │ ├── Headers │ │ └── RevealServer.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── RevealServer │ │ ├── Scripts │ │ └── integrate_revealserver.sh │ │ └── _CodeSignature │ │ └── CodeResources ├── ios-arm64_i386_x86_64-simulator │ └── RevealServer.framework │ │ ├── Headers │ │ └── RevealServer.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── RevealServer │ │ ├── Scripts │ │ └── integrate_revealserver.sh │ │ └── _CodeSignature │ │ └── CodeResources ├── ios-arm64_x86_64-maccatalyst │ └── RevealServer.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── Resources │ │ ├── RevealServer │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ └── RevealServer.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── Scripts │ │ │ │ └── integrate_revealserver.sh │ │ ├── RevealServer │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── ios-x86_64-maccatalyst │ └── RevealServer.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── Resources │ │ ├── RevealServer │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ └── RevealServer.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── Scripts │ │ │ │ └── integrate_revealserver.sh │ │ ├── RevealServer │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── tvos-arm64 │ └── RevealServer.framework │ │ ├── Headers │ │ └── RevealServer.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── RevealServer │ │ ├── Scripts │ │ └── integrate_revealserver.sh │ │ └── _CodeSignature │ │ └── CodeResources └── tvos-arm64_x86_64-simulator │ └── RevealServer.framework │ ├── Headers │ └── RevealServer.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ ├── RevealServer │ ├── Scripts │ └── integrate_revealserver.sh │ └── _CodeSignature │ └── CodeResources ├── Tests ├── ClassicTests.swift ├── HStackTests.swift ├── Info.plist ├── LayoutDescriptorTests.swift ├── OverlayTests.swift ├── RelativeTests.swift ├── SizingTests.swift ├── SyntaxTests.swift ├── Tests.swift ├── VGridTests.swift ├── VStackTests.swift ├── ZStackTests.swift └── __Snapshots__ │ ├── ClassicTests │ └── test_multiplier_constraints.1.png │ ├── HStackTests │ ├── test_additional_spacing.1.png │ └── test_mixing_spacer.1.png │ ├── LayoutDescriptorTests │ ├── test_layout_0.1.png │ ├── test_layout_center.1.png │ └── test_layout_edge.1.png │ ├── OverlayTests │ ├── test_1.1.png │ └── test_2.1.png │ ├── RelativeTests │ ├── test_accumulate_padding.1.png │ ├── test_accumulate_relative.1.png │ └── test_centering_in_ambiguous.1.png │ ├── SizingTests │ └── test_sizing.1.png │ ├── SyntaxTests │ ├── test_hStack.1.png │ └── test_vStack.1.png │ ├── Tests │ ├── test_1.1.png │ └── test_mondrian.1.png │ ├── VGridTests │ └── test_basic.1.png │ ├── VStackTests │ ├── test_additional_spacing.1.png │ ├── test_enter.1.png │ ├── test_including_layoutGuide.1.png │ ├── test_label_alignment.1.png │ ├── test_leading.1.png │ ├── test_mixing_spacer.1.png │ └── test_trailing.1.png │ └── ZStackTests │ ├── test_alignSelf.1.png │ ├── test_expandsElementIfCanBeExpanding.1.png │ ├── test_expandsElementWithRelative.1.png │ └── test_minimum_padding.1.png └── fastlane ├── Appfile ├── Fastfile └── README.md /.github/workflows/CocoaPodsRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/.github/workflows/CocoaPodsRelease.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo_MondrianLayout/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/AppDelegate.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Demo_MondrianLayout/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo_MondrianLayout/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo_MondrianLayout/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.Background.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.Background.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.Classic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.Classic.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.HStackBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.HStackBlock.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.LayoutContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.LayoutContainer.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.Manager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.Manager.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.Mondrian.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.Mondrian.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.Overlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.Overlay.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.RelativeBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.RelativeBlock.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.SafeArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.SafeArea.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.Sizing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.Sizing.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.VGridBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.VGridBlock.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.VStackBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.VStackBlock.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.ViewController.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.ZStackBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.ZStackBlock.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Book.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Book.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/CGSize+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/CGSize+.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/ExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/ExampleView.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Extensions.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/Info.plist -------------------------------------------------------------------------------- /Demo_MondrianLayout/InstagramPostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/InstagramPostView.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/RootContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/RootContainerViewController.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/SwiftUIComparison.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/SwiftUIComparison.swift -------------------------------------------------------------------------------- /Demo_MondrianLayout/UIColor+Mondrian.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Demo_MondrianLayout/UIColor+Mondrian.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /MondrianLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.podspec -------------------------------------------------------------------------------- /MondrianLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MondrianLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MondrianLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MondrianLayout.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /MondrianLayout.xcodeproj/xcshareddata/xcschemes/Demo_MondrianLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.xcodeproj/xcshareddata/xcschemes/Demo_MondrianLayout.xcscheme -------------------------------------------------------------------------------- /MondrianLayout.xcodeproj/xcshareddata/xcschemes/MondrianLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.xcodeproj/xcshareddata/xcschemes/MondrianLayout.xcscheme -------------------------------------------------------------------------------- /MondrianLayout.xcodeproj/xcshareddata/xcschemes/Tests-Record.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.xcodeproj/xcshareddata/xcschemes/Tests-Record.xcscheme -------------------------------------------------------------------------------- /MondrianLayout.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /MondrianLayout/Classic/LayoutDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Classic/LayoutDescriptor.swift -------------------------------------------------------------------------------- /MondrianLayout/Classic/MondrianArrayBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Classic/MondrianArrayBuilder.swift -------------------------------------------------------------------------------- /MondrianLayout/Descriptors/DimensionDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Descriptors/DimensionDescriptor.swift -------------------------------------------------------------------------------- /MondrianLayout/Descriptors/Edge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Descriptors/Edge.swift -------------------------------------------------------------------------------- /MondrianLayout/Descriptors/LayoutBuilderContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Descriptors/LayoutBuilderContext.swift -------------------------------------------------------------------------------- /MondrianLayout/Descriptors/Optimization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Descriptors/Optimization.swift -------------------------------------------------------------------------------- /MondrianLayout/Descriptors/VHStackContentBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Descriptors/VHStackContentBuilder.swift -------------------------------------------------------------------------------- /MondrianLayout/Descriptors/_LayoutBlockNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Descriptors/_LayoutBlockNode.swift -------------------------------------------------------------------------------- /MondrianLayout/Descriptors/_LayoutBlockType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Descriptors/_LayoutBlockType.swift -------------------------------------------------------------------------------- /MondrianLayout/EntryPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/EntryPoint.swift -------------------------------------------------------------------------------- /MondrianLayout/Extensions/NSLayoutConstraint+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Extensions/NSLayoutConstraint+.swift -------------------------------------------------------------------------------- /MondrianLayout/Extensions/UILayoutGuide+Mondrian.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Extensions/UILayoutGuide+Mondrian.swift -------------------------------------------------------------------------------- /MondrianLayout/Extensions/UIView+Mondrian.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Extensions/UIView+Mondrian.swift -------------------------------------------------------------------------------- /MondrianLayout/Internal/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Internal/Utils.swift -------------------------------------------------------------------------------- /MondrianLayout/Internal/_LayoutElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Internal/_LayoutElement.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/BackgroundBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/BackgroundBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/HStackBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/HStackBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/LayoutContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/LayoutContainer.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/LayoutGuideBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/LayoutGuideBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/OverlayBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/OverlayBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/RelativeBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/RelativeBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/StackingSpacer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/StackingSpacer.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/VGridBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/VGridBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/VStackBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/VStackBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/ViewBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/ViewBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/LayoutBlocks/ZStackBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/LayoutBlocks/ZStackBlock.swift -------------------------------------------------------------------------------- /MondrianLayout/Manager/LayoutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/Manager/LayoutManager.swift -------------------------------------------------------------------------------- /MondrianLayout/MondrianNamespace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/MondrianLayout/MondrianNamespace.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/README.md -------------------------------------------------------------------------------- /RevealServer.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/Info.plist -------------------------------------------------------------------------------- /RevealServer.xcframework/Scripts/integrate_revealserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/Scripts/integrate_revealserver.sh -------------------------------------------------------------------------------- /RevealServer.xcframework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /RevealServer.xcframework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /RevealServer.xcframework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /RevealServer.xcframework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /RevealServer.xcframework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/Headers/RevealServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/Headers/RevealServer.h -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/Info.plist -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/RevealServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/RevealServer -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/Scripts/integrate_revealserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/Scripts/integrate_revealserver.sh -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_armv7/RevealServer.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/Headers/RevealServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/Headers/RevealServer.h -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/Info.plist -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/RevealServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/RevealServer -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/Scripts/integrate_revealserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/Scripts/integrate_revealserver.sh -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_i386_x86_64-simulator/RevealServer.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/RevealServer: -------------------------------------------------------------------------------- 1 | Versions/Current/RevealServer -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/Headers/RevealServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/Headers/RevealServer.h -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/Resources/Scripts/integrate_revealserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/Resources/Scripts/integrate_revealserver.sh -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/RevealServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/RevealServer -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-arm64_x86_64-maccatalyst/RevealServer.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/RevealServer: -------------------------------------------------------------------------------- 1 | Versions/Current/RevealServer -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/Headers/RevealServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/Headers/RevealServer.h -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/Resources/Scripts/integrate_revealserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/Resources/Scripts/integrate_revealserver.sh -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/RevealServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/RevealServer -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /RevealServer.xcframework/ios-x86_64-maccatalyst/RevealServer.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64/RevealServer.framework/Headers/RevealServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64/RevealServer.framework/Headers/RevealServer.h -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64/RevealServer.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64/RevealServer.framework/Info.plist -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64/RevealServer.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64/RevealServer.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64/RevealServer.framework/RevealServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64/RevealServer.framework/RevealServer -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64/RevealServer.framework/Scripts/integrate_revealserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64/RevealServer.framework/Scripts/integrate_revealserver.sh -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64/RevealServer.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64/RevealServer.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/Headers/RevealServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/Headers/RevealServer.h -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/Info.plist -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/RevealServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/RevealServer -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/Scripts/integrate_revealserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/Scripts/integrate_revealserver.sh -------------------------------------------------------------------------------- /RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/RevealServer.xcframework/tvos-arm64_x86_64-simulator/RevealServer.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Tests/ClassicTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/ClassicTests.swift -------------------------------------------------------------------------------- /Tests/HStackTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/HStackTests.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/LayoutDescriptorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/LayoutDescriptorTests.swift -------------------------------------------------------------------------------- /Tests/OverlayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/OverlayTests.swift -------------------------------------------------------------------------------- /Tests/RelativeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/RelativeTests.swift -------------------------------------------------------------------------------- /Tests/SizingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/SizingTests.swift -------------------------------------------------------------------------------- /Tests/SyntaxTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/SyntaxTests.swift -------------------------------------------------------------------------------- /Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/Tests.swift -------------------------------------------------------------------------------- /Tests/VGridTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/VGridTests.swift -------------------------------------------------------------------------------- /Tests/VStackTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/VStackTests.swift -------------------------------------------------------------------------------- /Tests/ZStackTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/ZStackTests.swift -------------------------------------------------------------------------------- /Tests/__Snapshots__/ClassicTests/test_multiplier_constraints.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/ClassicTests/test_multiplier_constraints.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/HStackTests/test_additional_spacing.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/HStackTests/test_additional_spacing.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/HStackTests/test_mixing_spacer.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/HStackTests/test_mixing_spacer.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/LayoutDescriptorTests/test_layout_0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/LayoutDescriptorTests/test_layout_0.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/LayoutDescriptorTests/test_layout_center.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/LayoutDescriptorTests/test_layout_center.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/LayoutDescriptorTests/test_layout_edge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/LayoutDescriptorTests/test_layout_edge.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/OverlayTests/test_1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/OverlayTests/test_1.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/OverlayTests/test_2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/OverlayTests/test_2.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/RelativeTests/test_accumulate_padding.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/RelativeTests/test_accumulate_padding.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/RelativeTests/test_accumulate_relative.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/RelativeTests/test_accumulate_relative.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/RelativeTests/test_centering_in_ambiguous.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/RelativeTests/test_centering_in_ambiguous.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/SizingTests/test_sizing.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/SizingTests/test_sizing.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/SyntaxTests/test_hStack.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/SyntaxTests/test_hStack.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/SyntaxTests/test_vStack.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/SyntaxTests/test_vStack.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/Tests/test_1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/Tests/test_1.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/Tests/test_mondrian.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/Tests/test_mondrian.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/VGridTests/test_basic.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/VGridTests/test_basic.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/VStackTests/test_additional_spacing.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/VStackTests/test_additional_spacing.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/VStackTests/test_enter.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/VStackTests/test_enter.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/VStackTests/test_including_layoutGuide.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/VStackTests/test_including_layoutGuide.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/VStackTests/test_label_alignment.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/VStackTests/test_label_alignment.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/VStackTests/test_leading.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/VStackTests/test_leading.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/VStackTests/test_mixing_spacer.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/VStackTests/test_mixing_spacer.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/VStackTests/test_trailing.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/VStackTests/test_trailing.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/ZStackTests/test_alignSelf.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/ZStackTests/test_alignSelf.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/ZStackTests/test_expandsElementIfCanBeExpanding.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/ZStackTests/test_expandsElementIfCanBeExpanding.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/ZStackTests/test_expandsElementWithRelative.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/ZStackTests/test_expandsElementWithRelative.1.png -------------------------------------------------------------------------------- /Tests/__Snapshots__/ZStackTests/test_minimum_padding.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/Tests/__Snapshots__/ZStackTests/test_minimum_padding.1.png -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FluidGroup/MondrianLayout/HEAD/fastlane/README.md --------------------------------------------------------------------------------