├── .gitignore ├── LICENSE ├── README.md ├── TinyLayout.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── TinyLayout.xcscheme ├── TinyLayout ├── Info.plist ├── TinyLayout.h ├── TinyLayout.swift └── UIViewTinyLayout.swift └── TinyLayoutTests ├── Info.plist └── TinyLayoutTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/README.md -------------------------------------------------------------------------------- /TinyLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TinyLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TinyLayout.xcodeproj/xcshareddata/xcschemes/TinyLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayout.xcodeproj/xcshareddata/xcschemes/TinyLayout.xcscheme -------------------------------------------------------------------------------- /TinyLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayout/Info.plist -------------------------------------------------------------------------------- /TinyLayout/TinyLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayout/TinyLayout.h -------------------------------------------------------------------------------- /TinyLayout/TinyLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayout/TinyLayout.swift -------------------------------------------------------------------------------- /TinyLayout/UIViewTinyLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayout/UIViewTinyLayout.swift -------------------------------------------------------------------------------- /TinyLayoutTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayoutTests/Info.plist -------------------------------------------------------------------------------- /TinyLayoutTests/TinyLayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenroques/TinyLayout/HEAD/TinyLayoutTests/TinyLayoutTests.swift --------------------------------------------------------------------------------