Skip to content

Releases: layoutBox/FlexLayout

Fix top padding in method `padding(top, left, bottom, right)`

09 Aug 19:34
9afac85
Compare
Choose a tag to compare

Fix top padding in method padding(_ top: CGFloat, _ left: CGFloat, _ bottom: CGFloat, _ right: CGFloat)

Add cocoapods c++ library dependency

24 Jul 10:26
Compare
Choose a tag to compare

Add cocoapods c++ library dependency to the podspec file. Required to avoid possible linking errors.

Removed the unsupported alignItems `.baseline` mode

31 May 13:17
Compare
Choose a tag to compare

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.

Add `display(:Display)` method

10 May 01:10
Compare
Choose a tag to compare

Add display(:Display) method to set the Yoga's display property.
Added by cielpy in Pull Request #87

Upgrade to Swift 4.1

02 May 00:53
Compare
Choose a tag to compare

Upgrade to Swift 4.1
* Added by Luc Dion in Pull Request #85

Update the Podspec minimum iOS platform to 8.0

16 Apr 16:51
075af2a
Compare
Choose a tag to compare

Update the Podspec minimum iOS platform to 8.0

Add justifyContent mode `spaceEvenly` + Flex view's getter is public

06 Mar 15:22
Compare
Choose a tag to compare
  • Add supports for spaceEvenly justifyContent mode

  • Flex view's getter is public once again.

Fix retain cycle

05 Mar 14:38
Compare
Choose a tag to compare
  • Fix retain cycle
    • Now Flex's hosting view is kept using a weak reference.
    • Fixed by Alexey Zinchenko in Pull Request #64

Fix Yoga's rounding issues

28 Feb 14:30
Compare
Choose a tag to compare

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.
  • Added by Alexey Zinchenko in Pull Request #63

Update Yoga core to latest master (1.7)

27 Feb 15:30
Compare
Choose a tag to compare

Update Yoga core to latest master

  • Yoga core updated to facebook/yoga@295d111 (v 1.7)
  • 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