SwiftAutoLayout alternatives and similar libraries
Based on the "Auto Layout" category.
Alternatively, view SwiftAutoLayout alternatives based on common mentions on social networks and blogs.
-
PureLayout
The ultimate API for iOS & OS X Auto Layout — impressively simple, immensely powerful. Objective-C and Swift compatible. -
Cartography
A declarative Auto Layout DSL for Swift :iphone::triangular_ruler: -
EasySwiftLayout
Lightweight Swift framework for Apple's Auto-Layout -
MisterFusion
MisterFusion is Swift DSL for AutoLayout. It is the extremely clear, but concise syntax, in addition, can be used in both Swift and Objective-C. Support Safe Area and Size Class. -
Cupcake
An easy way to create and layout UI components for iOS (Swift version). -
QuickLayout
Written in pure Swift, QuickLayout offers a simple and easy way to manage Auto Layout in code. -
DeviceLayout
📱AutoLayout can be set differently for each device -
VFLToolbox
fancy Swift implementation of the Visual Format Language. -
HypeUI
🌺 HypeUI is a implementation of Apple's SwiftUI DSL style based on UIKit -
Cassowary
A Swift port of the Cassowary linear constraint solver -
KVConstraintKit
An Impressive Auto Layout DSL for iOS, tvOS & OSX. & It is written in pure swift. -
FrameLayoutKit
FrameLayoutKit is a super fast and easy to use autolayout kit -
AutoLayoutPlus
A bit of steroids for AutoLayout, powered by Swift. -
SwiftyLayout
Lightweight declarative auto-layout framework for Swift -
Draftsman
Draftsman is a Layout builder based on AutoLayout with Declarative approach -
Swift-iOS-Localize-Constraint
localize constraint on the fly
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SwiftAutoLayout or a related project?
README
SwiftAutoLayout
SwiftAutoLayout is a tiny DSL for Autolayout intended to provide a more declarative way to express layout constraints. Here's a quick example:
// this:
let constraint = view1.left == view2.right * 2.0 + 10.0 ~ 750
// is equivalent to:
let constraint = NSLayoutConstraint(item: view1, attribute: NSLayoutAttribute.Left, relatedBy: NSLayoutRelation.Equal, toItem: view2, attribute: NSLayoutAttribute.Right, multiplier: 2.0, constant: 10.0)
constraint.priority = 750
You may notice that this looks a lot like the linear equation that a constraint represents. From the Apple documentation:
The relationship involves a first attribute, a relationship type, and a modified second value formed by multiplying an attribute by a constant factor and then adding another constant factor to it. In other words, constraints look very much like linear equations of the following form:
attribute1 == multiplier × attribute2 + constant
SwiftAutoLayout allows you to more effectively communicate the intent of a constraint by making the syntax more similar to the equation that it represents.
Installing
Use Swift Package Manager or add SwiftAutoLayout.xcodeproj
as a subproject and link against either SwiftAutoLayout-iOS.framework
or SwiftAutoLayout-Mac.framework
depending on the platform.
Attributes
Layout attributes are defined as properties added in extensions of UIView
and UILayoutGuide
on iOS and NSView
and NSLayoutGuide
on OS X. For example, UIView.width
and UIView.height
represent NSLayoutAttribute.Width
and NSLayoutAttribute.Height
, respectively.
Layout guides (conforming to UILayoutSupport
) in UIViewController
are also supported using the topLayoutGuideTop
, topLayoutGuideBottom
, bottomLayoutGuideTop
, and bottomLayoutGuideBottom
properties.
Relations
Relations are expressed using the overloaded operators ==
(NSLayoutRelation.Equal
), >=
(NSLayoutRelation.GreaterThanOrEqual
), and <=
(NSLayoutRelation.LessThanOrEqual
).
Examples
Activating Single Constraint
(view1.left == view2.right * 2.0 + 10.0 ~ 750).active = true
Activating Multiple Constraints
NSLayoutConstraint.activateConstraints([
view2.centerX == view2.superview!.centerX,
view2.centerY == view2.superview!.centerY,
view1.left == view2.right * 2.0 + 10.0 ~ 750,
view1.top == view2.bottom + 5.0,
view1.width >= 200,
view1.height >= 400,
view1.trailing == layoutGuide.trailing,
view2.leading == layoutGuide.leading
])
Contact
- Indragie Karunaratne
- @indragie
- http://indragie.com
License
SwiftAutoLayout is licensed under the MIT License.
*Note that all licence references and agreements mentioned in the SwiftAutoLayout README section above
are relevant to that project's source code only.