├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG ├── Framework ├── Layout │ ├── ConditionalLayout.swift │ ├── IdentifierLayout.swift │ ├── LayingOut.swift │ ├── Layout.swift │ ├── LayoutGroup.swift │ ├── ListLayout.swift │ ├── PlatformSupport.swift │ ├── TraitCollectionLayout.swift │ └── ViewLayout.swift ├── Relayout-Info.plist └── Relayout.h ├── LICENSE ├── README.rst ├── Relayout.podspec ├── Relayout.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Relayout.xcscheme │ └── Sample App.xcscheme ├── RelayoutFramework.xcconfig ├── RelayoutPlatforms.xcconfig ├── RelayoutTests.xcconfig ├── RelayoutTests ├── RelayoutTests-Info.plist └── RelayoutTests.swift ├── SampleApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Crusty.imageset │ │ ├── Contents.json │ │ └── crusty-emoji.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CrustyViewController.swift ├── Info.plist └── MenuViewController.swift └── video.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.xcuserdatad 3 | Carthage 4 | Relayout.framework.zip 5 | build 6 | 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Framework/Layout/ConditionalLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/ConditionalLayout.swift -------------------------------------------------------------------------------- /Framework/Layout/IdentifierLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/IdentifierLayout.swift -------------------------------------------------------------------------------- /Framework/Layout/LayingOut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/LayingOut.swift -------------------------------------------------------------------------------- /Framework/Layout/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/Layout.swift -------------------------------------------------------------------------------- /Framework/Layout/LayoutGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/LayoutGroup.swift -------------------------------------------------------------------------------- /Framework/Layout/ListLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/ListLayout.swift -------------------------------------------------------------------------------- /Framework/Layout/PlatformSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/PlatformSupport.swift -------------------------------------------------------------------------------- /Framework/Layout/TraitCollectionLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/TraitCollectionLayout.swift -------------------------------------------------------------------------------- /Framework/Layout/ViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Layout/ViewLayout.swift -------------------------------------------------------------------------------- /Framework/Relayout-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Relayout-Info.plist -------------------------------------------------------------------------------- /Framework/Relayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Framework/Relayout.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/README.rst -------------------------------------------------------------------------------- /Relayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Relayout.podspec -------------------------------------------------------------------------------- /Relayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Relayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Relayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Relayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Relayout.xcodeproj/xcshareddata/xcschemes/Relayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Relayout.xcodeproj/xcshareddata/xcschemes/Relayout.xcscheme -------------------------------------------------------------------------------- /Relayout.xcodeproj/xcshareddata/xcschemes/Sample App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/Relayout.xcodeproj/xcshareddata/xcschemes/Sample App.xcscheme -------------------------------------------------------------------------------- /RelayoutFramework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/RelayoutFramework.xcconfig -------------------------------------------------------------------------------- /RelayoutPlatforms.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/RelayoutPlatforms.xcconfig -------------------------------------------------------------------------------- /RelayoutTests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/RelayoutTests.xcconfig -------------------------------------------------------------------------------- /RelayoutTests/RelayoutTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/RelayoutTests/RelayoutTests-Info.plist -------------------------------------------------------------------------------- /RelayoutTests/RelayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/RelayoutTests/RelayoutTests.swift -------------------------------------------------------------------------------- /SampleApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/AppDelegate.swift -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/Crusty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/Assets.xcassets/Crusty.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/Crusty.imageset/crusty-emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/Assets.xcassets/Crusty.imageset/crusty-emoji.png -------------------------------------------------------------------------------- /SampleApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SampleApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SampleApp/CrustyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/CrustyViewController.swift -------------------------------------------------------------------------------- /SampleApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/Info.plist -------------------------------------------------------------------------------- /SampleApp/MenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/SampleApp/MenuViewController.swift -------------------------------------------------------------------------------- /video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevestreza/Relayout/HEAD/video.png --------------------------------------------------------------------------------