├── .bazelrc ├── .bazelversion ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .ruby-version ├── BUILD.bazel ├── Contributing.md ├── Example ├── ParalayoutDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ ├── Paralayout.xcscheme │ │ └── ParalayoutDemo.xcscheme ├── ParalayoutDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── RootViewController.swift │ └── SceneDelegate.swift └── ParalayoutSnapshotTests │ ├── Info.plist │ ├── SnapshotTestCase.swift │ ├── ViewAlignmentSnapshotTests.swift │ ├── ViewDistributionSnapshotTests.swift │ ├── ViewSpreadingSnapshotTests.swift │ └── __Snapshots__ │ ├── ViewAlignmentSnapshotTests │ ├── testAlignmentUsingCapInsets.393x852-17-5-3x.png │ ├── testAlignmentUsingCapInsets.820x1180-17-5-2x.png │ ├── testAlignmentUsingFirstLine.393x852-17-5-3x.png │ ├── testAlignmentUsingFirstLine.820x1180-17-5-2x.png │ ├── testAlignmentUsingFirstLineCapInsets.393x852-17-5-3x.png │ ├── testAlignmentUsingFirstLineCapInsets.820x1180-17-5-2x.png │ ├── testAlignmentWithFrame.bothProxies_393x852-17-5-3x.png │ ├── testAlignmentWithFrame.bothProxies_820x1180-17-5-2x.png │ ├── testAlignmentWithFrame.noProxies_393x852-17-5-3x.png │ ├── testAlignmentWithFrame.noProxies_820x1180-17-5-2x.png │ ├── testAlignmentWithFrame.receiverProxy_393x852-17-5-3x.png │ ├── testAlignmentWithFrame.receiverProxy_820x1180-17-5-2x.png │ ├── testAlignmentWithFrame.targetProxy_393x852-17-5-3x.png │ ├── testAlignmentWithFrame.targetProxy_820x1180-17-5-2x.png │ ├── testAlignmentWithLayoutMargins.bothLayoutMargins_393x852-17-5-3x.png │ ├── testAlignmentWithLayoutMargins.bothLayoutMargins_820x1180-17-5-2x.png │ ├── testAlignmentWithLayoutMargins.noLayoutMargins_393x852-17-5-3x.png │ ├── testAlignmentWithLayoutMargins.noLayoutMargins_820x1180-17-5-2x.png │ ├── testAlignmentWithLayoutMargins.receiverLayoutMargins_393x852-17-5-3x.png │ ├── testAlignmentWithLayoutMargins.receiverLayoutMargins_820x1180-17-5-2x.png │ ├── testAlignmentWithLayoutMargins.targetLayoutMargins_393x852-17-5-3x.png │ ├── testAlignmentWithLayoutMargins.targetLayoutMargins_820x1180-17-5-2x.png │ ├── testAlignmentWithRect.393x852-17-5-3x.png │ ├── testAlignmentWithRect.820x1180-17-5-2x.png │ ├── testLayoutDirection.393x852-17-5-3x.png │ ├── testLayoutDirection.820x1180-17-5-2x.png │ ├── testNonZeroBoundsOrigin.393x852-17-5-3x.png │ ├── testNonZeroBoundsOrigin.820x1180-17-5-2x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_393x852-17-5-3x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_820x1180-17-5-2x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_negativeHorizontalOffset_393x852-17-5-3x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_negativeHorizontalOffset_820x1180-17-5-2x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_negativeVerticalOffset_393x852-17-5-3x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_negativeVerticalOffset_820x1180-17-5-2x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_positiveHorizontalOffset_393x852-17-5-3x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_positiveHorizontalOffset_820x1180-17-5-2x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_positiveVerticalOffset_393x852-17-5-3x.png │ ├── testSiblingAlignment.aligningCenterToTopRight_positiveVerticalOffset_820x1180-17-5-2x.png │ ├── testTransformHasNoEffect.393x852-17-5-3x.png │ └── testTransformHasNoEffect.820x1180-17-5-2x.png │ ├── ViewDistributionSnapshotTests │ ├── testDistribution.vertical_393x852-17-5-3x.png │ ├── testDistribution.vertical_820x1180-17-5-2x.png │ ├── testDistributionIgnoresTransform.393x852-17-5-3x.png │ ├── testDistributionIgnoresTransform.820x1180-17-5-2x.png │ ├── testDistributionUsingCapInsets.393x852-17-5-3x.png │ ├── testDistributionUsingCapInsets.820x1180-17-5-2x.png │ ├── testHorizontalDistributionAlongBaseline.393x852-17-5-3x.png │ ├── testHorizontalDistributionAlongBaseline.820x1180-17-5-2x.png │ ├── testHorizontalDistributionFollowsLayoutDirection.LTR_393x852-17-5-3x.png │ ├── testHorizontalDistributionFollowsLayoutDirection.LTR_820x1180-17-5-2x.png │ ├── testHorizontalDistributionFollowsLayoutDirection.RTL_393x852-17-5-3x.png │ └── testHorizontalDistributionFollowsLayoutDirection.RTL_820x1180-17-5-2x.png │ └── ViewSpreadingSnapshotTests │ ├── testHorizontallySpreadSubviews.LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.RTL_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.RTL_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.bottomWithPositiveInset_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.bottomWithPositiveInset_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.bottom_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.bottom_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.centeredWithPositiveOffset_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.centeredWithPositiveOffset_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.centered_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.centered_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.inLayoutRect_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.inLayoutRect_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.inLayoutRect_centered_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.inLayoutRect_centered_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.nonZeroMargin_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.nonZeroMargin_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.nonZeroMargin_RTL_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.nonZeroMargin_RTL_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.nonZeroMargin_inLayoutRect_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.nonZeroMargin_inLayoutRect_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.topWithPositiveInset_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.topWithPositiveInset_LTR_820x1180-17-5-2x.png │ ├── testHorizontallySpreadSubviews.top_LTR_393x852-17-5-3x.png │ ├── testHorizontallySpreadSubviews.top_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.centeredWithPositiveOffset_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.centeredWithPositiveOffset_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.centeredWithPositiveOffset_RTL_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.centeredWithPositiveOffset_RTL_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.centered_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.centered_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.centered_RTL_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.centered_RTL_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.inLayoutRect_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.inLayoutRect_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.inLayoutRect_centered_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.inLayoutRect_centered_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.leadingWithPositiveInset_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.leadingWithPositiveInset_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.leadingWithPositiveInset_RTL_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.leadingWithPositiveInset_RTL_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.leading_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.leading_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.leading_RTL_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.leading_RTL_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.nonZeroMargin_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.nonZeroMargin_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.trailingWithPositiveInset_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.trailingWithPositiveInset_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.trailingWithPositiveInset_RTL_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.trailingWithPositiveInset_RTL_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.trailing_LTR_393x852-17-5-3x.png │ ├── testVerticallySpreadSubviews.trailing_LTR_820x1180-17-5-2x.png │ ├── testVerticallySpreadSubviews.trailing_RTL_393x852-17-5-3x.png │ └── testVerticallySpreadSubviews.trailing_RTL_820x1180-17-5-2x.png ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── MODULE.bazel ├── Package.swift ├── Package@swift-5.9.swift ├── Paralayout.podspec ├── Paralayout ├── Alignable.swift ├── Angle.swift ├── AspectRatio.swift ├── GeometryAdditions.swift ├── Info.plist ├── Interpolation.swift ├── LayoutDirection.swift ├── PixelRounding.swift ├── Position.swift ├── UIFont+CapInsets.swift ├── UILabel+Alignment.swift ├── UILabel+Distribution.swift ├── UIView+Alignment.swift ├── UIView+AlignmentConveniences.swift ├── UIView+Distribution.swift ├── UIView+Frame.swift ├── UIView+Sizing.swift ├── UIView+Spreading.swift ├── ViewArrayBuilder.swift ├── ViewDistributionAxis.swift ├── ViewDistributionBuilder.swift └── ViewDistributionItem.swift ├── ParalayoutTests ├── AngleTests.swift ├── AspectRatioTests.swift ├── CombinationTesting.swift ├── DistributionTests.swift ├── GeometryAdditionsTests.swift ├── Info.plist ├── InterpolationTests.swift ├── PixelRoundingTests.swift ├── PositionTests.swift ├── TestSamples.swift ├── UIViewFrameTests.swift ├── UIViewSizingTests.swift ├── ViewArrayBuilderTests.swift └── ViewDistributionBuilderTests.swift ├── README.md ├── Scripts └── build.swift └── WORKSPACE.bzlmod /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.4.0 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.5 2 | -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Contributing.md -------------------------------------------------------------------------------- /Example/ParalayoutDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ParalayoutDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ParalayoutDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ParalayoutDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/ParalayoutDemo.xcodeproj/xcshareddata/xcschemes/Paralayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo.xcodeproj/xcshareddata/xcschemes/Paralayout.xcscheme -------------------------------------------------------------------------------- /Example/ParalayoutDemo.xcodeproj/xcshareddata/xcschemes/ParalayoutDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo.xcodeproj/xcshareddata/xcschemes/ParalayoutDemo.xcscheme -------------------------------------------------------------------------------- /Example/ParalayoutDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ParalayoutDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/ParalayoutDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ParalayoutDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ParalayoutDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ParalayoutDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo/Info.plist -------------------------------------------------------------------------------- /Example/ParalayoutDemo/RootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo/RootViewController.swift -------------------------------------------------------------------------------- /Example/ParalayoutDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/Info.plist -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/SnapshotTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/SnapshotTestCase.swift -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/ViewAlignmentSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/ViewAlignmentSnapshotTests.swift -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/ViewDistributionSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/ViewDistributionSnapshotTests.swift -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/ViewSpreadingSnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/ViewSpreadingSnapshotTests.swift -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingCapInsets.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingCapInsets.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingCapInsets.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingCapInsets.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingFirstLine.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingFirstLine.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingFirstLine.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingFirstLine.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingFirstLineCapInsets.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingFirstLineCapInsets.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingFirstLineCapInsets.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentUsingFirstLineCapInsets.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.bothProxies_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.bothProxies_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.bothProxies_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.bothProxies_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.noProxies_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.noProxies_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.noProxies_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.noProxies_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.receiverProxy_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.receiverProxy_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.receiverProxy_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.receiverProxy_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.targetProxy_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.targetProxy_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.targetProxy_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithFrame.targetProxy_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.bothLayoutMargins_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.bothLayoutMargins_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.bothLayoutMargins_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.bothLayoutMargins_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.noLayoutMargins_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.noLayoutMargins_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.noLayoutMargins_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.noLayoutMargins_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.receiverLayoutMargins_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.receiverLayoutMargins_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.receiverLayoutMargins_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.receiverLayoutMargins_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.targetLayoutMargins_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.targetLayoutMargins_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.targetLayoutMargins_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithLayoutMargins.targetLayoutMargins_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithRect.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithRect.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithRect.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testAlignmentWithRect.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testLayoutDirection.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testLayoutDirection.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testLayoutDirection.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testLayoutDirection.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testNonZeroBoundsOrigin.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testNonZeroBoundsOrigin.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testNonZeroBoundsOrigin.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testNonZeroBoundsOrigin.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_negativeHorizontalOffset_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_negativeHorizontalOffset_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_negativeHorizontalOffset_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_negativeHorizontalOffset_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_negativeVerticalOffset_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_negativeVerticalOffset_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_negativeVerticalOffset_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_negativeVerticalOffset_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_positiveHorizontalOffset_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_positiveHorizontalOffset_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_positiveHorizontalOffset_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_positiveHorizontalOffset_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_positiveVerticalOffset_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_positiveVerticalOffset_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_positiveVerticalOffset_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testSiblingAlignment.aligningCenterToTopRight_positiveVerticalOffset_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testTransformHasNoEffect.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testTransformHasNoEffect.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testTransformHasNoEffect.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewAlignmentSnapshotTests/testTransformHasNoEffect.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistribution.vertical_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistribution.vertical_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistribution.vertical_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistribution.vertical_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistributionIgnoresTransform.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistributionIgnoresTransform.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistributionIgnoresTransform.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistributionIgnoresTransform.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistributionUsingCapInsets.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistributionUsingCapInsets.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistributionUsingCapInsets.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testDistributionUsingCapInsets.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionAlongBaseline.393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionAlongBaseline.393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionAlongBaseline.820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionAlongBaseline.820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionFollowsLayoutDirection.LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionFollowsLayoutDirection.LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionFollowsLayoutDirection.LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionFollowsLayoutDirection.LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionFollowsLayoutDirection.RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionFollowsLayoutDirection.RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionFollowsLayoutDirection.RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewDistributionSnapshotTests/testHorizontalDistributionFollowsLayoutDirection.RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.bottomWithPositiveInset_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.bottomWithPositiveInset_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.bottomWithPositiveInset_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.bottomWithPositiveInset_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.bottom_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.bottom_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.bottom_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.bottom_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.centeredWithPositiveOffset_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.centeredWithPositiveOffset_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.centeredWithPositiveOffset_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.centeredWithPositiveOffset_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.centered_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.centered_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.centered_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.centered_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.inLayoutRect_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.inLayoutRect_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.inLayoutRect_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.inLayoutRect_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.inLayoutRect_centered_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.inLayoutRect_centered_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.inLayoutRect_centered_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.inLayoutRect_centered_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_inLayoutRect_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_inLayoutRect_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_inLayoutRect_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.nonZeroMargin_inLayoutRect_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.topWithPositiveInset_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.topWithPositiveInset_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.topWithPositiveInset_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.topWithPositiveInset_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.top_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.top_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.top_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testHorizontallySpreadSubviews.top_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centeredWithPositiveOffset_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centeredWithPositiveOffset_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centeredWithPositiveOffset_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centeredWithPositiveOffset_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centeredWithPositiveOffset_RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centeredWithPositiveOffset_RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centeredWithPositiveOffset_RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centeredWithPositiveOffset_RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centered_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centered_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centered_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centered_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centered_RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centered_RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centered_RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.centered_RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.inLayoutRect_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.inLayoutRect_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.inLayoutRect_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.inLayoutRect_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.inLayoutRect_centered_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.inLayoutRect_centered_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.inLayoutRect_centered_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.inLayoutRect_centered_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leadingWithPositiveInset_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leadingWithPositiveInset_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leadingWithPositiveInset_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leadingWithPositiveInset_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leadingWithPositiveInset_RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leadingWithPositiveInset_RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leadingWithPositiveInset_RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leadingWithPositiveInset_RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leading_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leading_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leading_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leading_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leading_RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leading_RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leading_RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.leading_RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.nonZeroMargin_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.nonZeroMargin_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.nonZeroMargin_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.nonZeroMargin_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailingWithPositiveInset_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailingWithPositiveInset_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailingWithPositiveInset_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailingWithPositiveInset_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailingWithPositiveInset_RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailingWithPositiveInset_RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailingWithPositiveInset_RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailingWithPositiveInset_RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailing_LTR_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailing_LTR_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailing_LTR_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailing_LTR_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailing_RTL_393x852-17-5-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailing_RTL_393x852-17-5-3x.png -------------------------------------------------------------------------------- /Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailing_RTL_820x1180-17-5-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Example/ParalayoutSnapshotTests/__Snapshots__/ViewSpreadingSnapshotTests/testVerticallySpreadSubviews.trailing_RTL_820x1180-17-5-2x.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.9.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Package@swift-5.9.swift -------------------------------------------------------------------------------- /Paralayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout.podspec -------------------------------------------------------------------------------- /Paralayout/Alignable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/Alignable.swift -------------------------------------------------------------------------------- /Paralayout/Angle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/Angle.swift -------------------------------------------------------------------------------- /Paralayout/AspectRatio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/AspectRatio.swift -------------------------------------------------------------------------------- /Paralayout/GeometryAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/GeometryAdditions.swift -------------------------------------------------------------------------------- /Paralayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/Info.plist -------------------------------------------------------------------------------- /Paralayout/Interpolation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/Interpolation.swift -------------------------------------------------------------------------------- /Paralayout/LayoutDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/LayoutDirection.swift -------------------------------------------------------------------------------- /Paralayout/PixelRounding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/PixelRounding.swift -------------------------------------------------------------------------------- /Paralayout/Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/Position.swift -------------------------------------------------------------------------------- /Paralayout/UIFont+CapInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UIFont+CapInsets.swift -------------------------------------------------------------------------------- /Paralayout/UILabel+Alignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UILabel+Alignment.swift -------------------------------------------------------------------------------- /Paralayout/UILabel+Distribution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UILabel+Distribution.swift -------------------------------------------------------------------------------- /Paralayout/UIView+Alignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UIView+Alignment.swift -------------------------------------------------------------------------------- /Paralayout/UIView+AlignmentConveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UIView+AlignmentConveniences.swift -------------------------------------------------------------------------------- /Paralayout/UIView+Distribution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UIView+Distribution.swift -------------------------------------------------------------------------------- /Paralayout/UIView+Frame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UIView+Frame.swift -------------------------------------------------------------------------------- /Paralayout/UIView+Sizing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UIView+Sizing.swift -------------------------------------------------------------------------------- /Paralayout/UIView+Spreading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/UIView+Spreading.swift -------------------------------------------------------------------------------- /Paralayout/ViewArrayBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/ViewArrayBuilder.swift -------------------------------------------------------------------------------- /Paralayout/ViewDistributionAxis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/ViewDistributionAxis.swift -------------------------------------------------------------------------------- /Paralayout/ViewDistributionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/ViewDistributionBuilder.swift -------------------------------------------------------------------------------- /Paralayout/ViewDistributionItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Paralayout/ViewDistributionItem.swift -------------------------------------------------------------------------------- /ParalayoutTests/AngleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/AngleTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/AspectRatioTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/AspectRatioTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/CombinationTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/CombinationTesting.swift -------------------------------------------------------------------------------- /ParalayoutTests/DistributionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/DistributionTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/GeometryAdditionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/GeometryAdditionsTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/Info.plist -------------------------------------------------------------------------------- /ParalayoutTests/InterpolationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/InterpolationTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/PixelRoundingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/PixelRoundingTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/PositionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/PositionTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/TestSamples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/TestSamples.swift -------------------------------------------------------------------------------- /ParalayoutTests/UIViewFrameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/UIViewFrameTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/UIViewSizingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/UIViewSizingTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/ViewArrayBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/ViewArrayBuilderTests.swift -------------------------------------------------------------------------------- /ParalayoutTests/ViewDistributionBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/ParalayoutTests/ViewDistributionBuilderTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/build.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/Scripts/build.swift -------------------------------------------------------------------------------- /WORKSPACE.bzlmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/Paralayout/HEAD/WORKSPACE.bzlmod --------------------------------------------------------------------------------