├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── CONTRIBUTING.md ├── Example ├── FramezillaExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── FramezillaExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Framezilla.podspec ├── Framezilla.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Framezilla iOS.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── Array+Stack.swift ├── Framezilla.h ├── Info-iOS.plist ├── Maker+Configurations.swift ├── Maker+Unavailable.swift ├── Maker.swift ├── MakerHelper.swift ├── Number.swift ├── Parameters.swift ├── UIView+Installer.swift └── UIView+Relations.swift ├── Tests ├── BaseTest.swift ├── ContainerTests.swift ├── FramezillaTests-Bridging-Header.h ├── Info.plist ├── MakerBothSideRelationsTests.swift ├── MakerCenterTests.swift ├── MakerSafeAreaTests.swift ├── MakerStackTests.swift ├── MakerTests.swift ├── MakerWidthHeightTests.swift ├── ScrollViewTests.swift └── StateTests.swift ├── _config.yml └── img ├── animating.gif ├── bottomLeftRelation.png ├── centered.png ├── container.png ├── edges.png ├── framezilla.png ├── framezilla_green.png ├── safe_area.png ├── sizeThatFits.png ├── sizeToFit.png └── stack.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/FramezillaExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Example/FramezillaExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/FramezillaExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Example/FramezillaExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/FramezillaExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Example/FramezillaExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/FramezillaExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Example/FramezillaExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/FramezillaExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Example/FramezillaExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/FramezillaExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Example/FramezillaExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/FramezillaExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Example/FramezillaExample/Info.plist -------------------------------------------------------------------------------- /Example/FramezillaExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Example/FramezillaExample/ViewController.swift -------------------------------------------------------------------------------- /Framezilla.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Framezilla.podspec -------------------------------------------------------------------------------- /Framezilla.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Framezilla.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Framezilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Framezilla.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Framezilla.xcodeproj/xcshareddata/xcschemes/Framezilla iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Framezilla.xcodeproj/xcshareddata/xcschemes/Framezilla iOS.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Array+Stack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/Array+Stack.swift -------------------------------------------------------------------------------- /Sources/Framezilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/Framezilla.h -------------------------------------------------------------------------------- /Sources/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/Info-iOS.plist -------------------------------------------------------------------------------- /Sources/Maker+Configurations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/Maker+Configurations.swift -------------------------------------------------------------------------------- /Sources/Maker+Unavailable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/Maker+Unavailable.swift -------------------------------------------------------------------------------- /Sources/Maker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/Maker.swift -------------------------------------------------------------------------------- /Sources/MakerHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/MakerHelper.swift -------------------------------------------------------------------------------- /Sources/Number.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/Number.swift -------------------------------------------------------------------------------- /Sources/Parameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/Parameters.swift -------------------------------------------------------------------------------- /Sources/UIView+Installer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/UIView+Installer.swift -------------------------------------------------------------------------------- /Sources/UIView+Relations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Sources/UIView+Relations.swift -------------------------------------------------------------------------------- /Tests/BaseTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/BaseTest.swift -------------------------------------------------------------------------------- /Tests/ContainerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/ContainerTests.swift -------------------------------------------------------------------------------- /Tests/FramezillaTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/FramezillaTests-Bridging-Header.h -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/MakerBothSideRelationsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/MakerBothSideRelationsTests.swift -------------------------------------------------------------------------------- /Tests/MakerCenterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/MakerCenterTests.swift -------------------------------------------------------------------------------- /Tests/MakerSafeAreaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/MakerSafeAreaTests.swift -------------------------------------------------------------------------------- /Tests/MakerStackTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/MakerStackTests.swift -------------------------------------------------------------------------------- /Tests/MakerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/MakerTests.swift -------------------------------------------------------------------------------- /Tests/MakerWidthHeightTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/MakerWidthHeightTests.swift -------------------------------------------------------------------------------- /Tests/ScrollViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/ScrollViewTests.swift -------------------------------------------------------------------------------- /Tests/StateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/Tests/StateTests.swift -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/_config.yml -------------------------------------------------------------------------------- /img/animating.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/animating.gif -------------------------------------------------------------------------------- /img/bottomLeftRelation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/bottomLeftRelation.png -------------------------------------------------------------------------------- /img/centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/centered.png -------------------------------------------------------------------------------- /img/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/container.png -------------------------------------------------------------------------------- /img/edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/edges.png -------------------------------------------------------------------------------- /img/framezilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/framezilla.png -------------------------------------------------------------------------------- /img/framezilla_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/framezilla_green.png -------------------------------------------------------------------------------- /img/safe_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/safe_area.png -------------------------------------------------------------------------------- /img/sizeThatFits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/sizeThatFits.png -------------------------------------------------------------------------------- /img/sizeToFit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/sizeToFit.png -------------------------------------------------------------------------------- /img/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Otbivnoe/Framezilla/HEAD/img/stack.png --------------------------------------------------------------------------------