All Versions
31
Latest Version
Avg Release Cycle
75 days
Latest Release
-

Changelog History
Page 1

  • v1.3.24 Changes

    πŸš€ Released on 2022-04-08

    Change the access control of margin padding functions

    βž• Added by OhKanghoon in Pull Request #199

  • v1.3.23 Changes

    πŸš€ Released on 2021-11-22

    πŸ‘ Percent padding support.

    πŸ†• 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

  • v1.3.22 Changes

    πŸš€ Released on 2021-10-25

  • v1.3.20 Changes

    May 29, 2020

    πŸš€ 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

  • v1.3.19

    May 29, 2020
  • v1.3.18 Changes

    May 01, 2020

    πŸš€ Released on 2020-05-01

    βž• Adds Swift Package Manager Support

    βž• Added by gcox in Pull Request #150

  • v1.3.17 Changes

    October 09, 2019

    βž• 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 to top().bottom().
    • horizontally(: CGFloat) / horizontally(: FPercent):
      Controls the distance child’s left and right edges from the parent’s edges. Equal to left().right().
    • all(: CGFloat) / all(: FPercent):
      Controls the distance child’s edges from the parent’s edges. Equal to top().bottom().left().right().

    βž• Added by Kuluum in Pull Request #146

  • v1.3.16 Changes

    August 03, 2019

    πŸš€ 1.3.16

    πŸš€ Released on 2019-08-03

    • 0️⃣ Delegate isIncludedInLayout to yoga vs using default value:
      πŸ”€ Previously the value of isIncludedInLayout 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.
  • v1.3.15 Changes

    June 08, 2019

    πŸš€ 1.3.15

    πŸš€ Released on 2019-06-07

    • πŸ›  Fix public extension warning
    • ⚑️ Update to Swift 4.2
    • ⚑️ Update cocoapods to 1.7
  • v1.3.14 Changes

    May 17, 2019

    πŸš€ Released on 2019-05-17

    βž• Add method:

    • basis(_ : FPercent): This method is similar to basis(_ : CGFloat?) but takes a percentage parameter.

    • βž• Added by Andreas Mattsson in Pull Request #128