Released on 2022-04-08
####Change the access control of margin padding functions
Added by OhKanghoon in Pull Request #199
Released on 2021-11-22
New methods:
paddingTop(_ percent: FPercent)
**paddingLeft(_ percent: FPercent)
**paddingBottom(_ percent: FPercent)
**paddingRight(_ percent: FPercent)
**paddingStart(_ percent: FPercent)
**paddingEnd(_ percent: FPercent)
**paddingHorizontal(_ percent: FPercent)
**paddingVertical(_ percent: FPercent)
**
Added by albertocs-noma in Pull Request #159
Released on 2021-10-25
Released on 2020-05-29
Add baseline item support. Note that for now baseline support is only for the first baseline.
Added by Michael Ong in Pull Request #159
Released on 2020-05-01
Adds Swift Package Manager Support
Added by gcox in Pull Request #150
Released on 2019-10-090
Add new methods to position items in absolute positionning (https://github.com/layoutBox/FlexLayout#4-absolute-positioning):
vertically(: CGFloat)
/vertically(: FPercent)
:
Controls the distance child’s top and bottom edges from the parent’s edges. Equal totop().bottom()
.horizontally(: CGFloat)
/horizontally(: FPercent)
:
Controls the distance child’s left and right edges from the parent’s edges. Equal toleft().right()
.all(: CGFloat)
/all(: FPercent)
:
Controls the distance child’s edges from the parent’s edges. Equal totop().bottom().left().right()
.
Added by Kuluum in Pull Request #146
Released on 2019-08-03
- Delegate isIncludedInLayout to yoga vs using default value:
Previously the value ofisIncludedInLayout
may have not reflect what the underlying yoga value is as the developer may have manipulated the yoga value directly. This could potentially leave the Flex initial value out of sync. This change defers the get/set of this property to yoga.
Released on 2019-06-07
- Fix public extension warning
- Added by Levi McCallum in Pull Request #131
- Update to Swift 4.2
- Update cocoapods to 1.7
Released on 2019-05-17
Add method:
-
basis(_ : FPercent)
: This method is similar tobasis(_ : CGFloat?)
but takes a percentage parameter. -
Added by Andreas Mattsson in Pull Request #128
Released on 2018-08-09
Fix top padding in method padding(_ top: CGFloat, _ left: CGFloat, _ bottom: CGFloat, _ right: CGFloat)
.
Released on 2018-07-24
Add cocoapods c++ library dependency to the podspec file. Required to avoid possible linking errors.
- Added by Antoine Lamy in Pull Request #103
Released on 2018-05-31
Removed alignItems .baseline
mode which is not currently supported by Yoga. So we remove it from the list of supported mode until Yoga support it.
Released on 2018-05-09
Add display(:Display)
method to set the Yoga's display property.
Released on 2018-05-01
Upgrade to Swift 4.1
Released on 2018-04-16
Update the Podspec minimum iOS platform to 8.0
Released on 2018-03-06
Add supports for spaceEvenly
justifyContent mode
Flex view's getter is public once again.
- Added by Alexander Guschin in Pull Request #68
Released on 2018-03-05
Fix retain cycle
- Now Flex's hosting view is kept using a weak reference.
- Fixed by Alexey Zinchenko in Pull Request #64
Released on 2018-02-28
Fix Yoga's rounding issues
- Integer truncation of sizes calculated by sizeThatFits:, and utility functions. Introduced by Obj-C -> Obj-C++ conversion in previous PR
- Low coordinate rounding threshold, which results in flooring apparently valid values. Layout becomes very wrong with absolute coordinate values larger than 100 and having pointScaleFactor set to 3.
- Fixed by Alexey Zinchenko in Pull Request #63
Released on 2018-02-27
Update Yoga core to latest master
- Yoga core updated to facebook/yoga@295d111
- Yoga core tests and their buck configuration added, see core-tests folder
- Add buck tests to CI config
- Added by Alexey Zinchenko in Pull Request #62
Released on 2018-02-23
Integrates Yoga's sources into FlexLayout
Released on 2017-12-20
Add margins methods taking percentage parameters:
-
marginTop(_ percent: FPercent)
Top margin specify the offset the top edge of the item should have from it’s closest sibling (item) or parent (container). -
marginLeft(_ percent: FPercent)
Left margin specify the offset the left edge of the item should have from it’s closest sibling (item) or parent (container). -
marginBottom(_ percent: FPercent)
Bottom margin specify the offset the bottom edge of the item should have from it’s closest sibling (item) or parent (container) -
marginRight(_ percent: FPercent)
Right margin specify the offset the right edge of the item should have from it’s closest sibling (item) or parent (container). -
marginStart(_ percent: FPercent)
Set the start margin. In LTR direction, start margin specify the left margin. In RTL direction, start margin specify the right margin. -
marginEnd(_ percent: FPercent)
Set the end margin. In LTR direction, end margin specify the right margin. In RTL direction, end margin specify the left margin. -
marginHorizontal(_ percent: FPercent)
Set the left, right, start and end margins to the specified value. -
marginVertical(_ percent: FPercent)
Set the top and bottom margins to the specified value.view.flex.margin(20%) view.flex.marginTop(20%).marginLeft(20%) view.flex.marginHorizontal(10%)
Released on 2017-11-23
Update Carthage support
Released on 2017-11-23
Many properties can be reset to their initial state. Specifying nil
when calling these properties reset their value:
width(nil)
height(nil)
size(nil)
minWidth(nil)
maxWidth(nil)
minHeight(nil)
maxHeight(nil)
aspectRatio(nil)
FlexLayout now integrates YogaKit source code, this was needed to improve efficiently the iOS's yoga interface.
Released on 2017-11-23
AspectRatio can now be reset. Simply call aspectRatio(nil)
.
Released on 2017-10-31
Add new margin methods:
margin(_ insets: UIEdgeInsets)
: Set all margins using UIEdgeInsets. This method is particularly useful to set all margins using iOS 11UIView.safeAreaInsets
margin(_ directionalInsets: NSDirectionalEdgeInsets)
: Set margins using NSDirectionalEdgeInsets. This method is particularly to set all margins using iOS 11UIView.directionalLayoutMargins
Add new padding methods:
-
padding(_ insets: UIEdgeInsets)
: Set all paddings using UIEdgeInsets. This method is particularly useful using iOS 11UIView.safeAreaInsets
-
padding(_ directionalInsets: NSDirectionalEdgeInsets)
: Set paddings using NSDirectionalEdgeInsets. This method is particularly useful to set all paddings using iOS 11UIView.directionalLayoutMargins
-
Update all examples to support iPhone X landscape orientation.
-
Add an example of UICollectionView using FlexLayout
Released on 2017-10-17
-
Add width/height methods taking percentage parameter
- width(_ percent: FPercent)
- height(_ percent: FPercent)
- minWidth(_ percent: FPercent)
- maxWidth(_ percent: FPercent)
- minHeight(_ percent: FPercent)
- maxHeight(_ percent: FPercent)
Usage examples:
Released on 2017-10-02
Released on 2017-08-23
- Add missing markDirty() method
⚠️ BREAKING CHANGE: Renamed the methodaddContainer()
to `addItem(). It is clearer that the added view is in fact a flex item, and not just a flex container.- Add an implementation of the Ray Wenderlich Yoga Tutorial
- Add Swift 4.0 support
Released on 2017-08-20
- Initial official release.
- Add unit tests
Released on 2017-08-02
- Initial beta release.