FlexLayout Versions Save

FlexLayout adds a nice Swift interface to the highly optimized facebook/yoga flexbox implementation. Concise, intuitive & chainable syntax.

2.0.07

2 months ago

Added by OhKanghoon in Pull Request #245

2.0.06

3 months ago

Background

  • Public header issue occurs when using Objective-C package in Tuist's Dependency. To resolve this issue, I want to provide xcframework.
  • Resolve the issue that occurs when creating xcframework due to duplicate 'postfix operator %'.

Contents

  • remove unnecessary files and headers
    • Modified to manage yoga directly in FlexLayout. Buck dependency is now unnecessary.
  • remove duplicated postfix operator
  • update Podfile.lock
  • remove Info.plist
  • move FlexLayout.h to public header directory

Added by OhKanghoon in Pull Request #244

2.0.05

4 months ago

1) Add Gap support

Add Gap methods:

  • columnGap(_ value: CGFloat) -> Flex
  • rowGap(_ value: CGFloat) -> Flex
  • gap(_ value: CGFloat) -> Flex
background

After Yoga layout updated to 2.0.0 the gap func added. and as needed by this issue and my company's product, me and my partner @TaekH made feature to use. 🙇‍♂️

Added by Buseong Kim in Pull Request #241

2) Fix "Child already has a owner" Assert

Upgrading to the latest version of Yoga introduced an assert in YGNodeInsertChild() that was previously removed accidentally (see relevant commit). This assert will throw an error if the node we are trying to add already has an owner. Unfortunately, we can fall into this case quite easily if we move a view between different superviews (as demonstrated in the following contrived example).

Restoring the changes from this old commit c303faa should ensure that any lingering parent references are cleaned up before we call YGNodeInsertChild()

Added by kennethpu in Pull Request #242

2.0.04

4 months ago

Enhance Swift Package experience

  • Change the Swift Package Manager to be available without FLEXLAYOUT_SWIFT_PACKAGE flag
  • add public header path
  • remove FLEXLAYOUT_SWIFT_PACKAGE
  • remove library for internal (FlexLayoutYoga, FlexLayoutYogaKit)
  • move the unit test to the swift package with XCTest

Added by OhKanghoon in Pull Request #232

Split the Example project in 2 projects (Cocoapods & SPM)

Split the Example project in 2 projects:

  • FlexLayoutSample: Use cocoapods dependency manager
  • FlexLayoutSample-SPM: Use SPM (Swift Packager Manager) dependency manager

Added by Luc Dion in Pull Request #240

2.0.03

7 months ago

Added by OhKanghoon in Pull Request #230

2.0.02

7 months ago

FlexLayout version has been increased to reflect the new Yoga core version.

Added by OhKanghoon in Pull Request #230

1.3.33

10 months ago

Background

  • Since #219 was merged, LLDB problems have occurred in environments where CocoaPods and SPM are used together.
  • This reverts commit f36c766865df29ac70f31b604dde54c5a975819c. (#219)

Changes

  • Revert f36c766865df29ac70f31b604dde54c5a975819c commit to resolve
  • The existing problem is solved by writing each package.swift like the code below
// in Package.swift
.target(
  name: "SomeTarget",
  dependencies: [
    "FlexLayout",
  ],
  cSettings: [
    .define("FLEXLAYOUT_SWIFT_PACKAGE"),
  ],
  cxxSettings: [
    .define("FLEXLAYOUT_SWIFT_PACKAGE"),
  ],
  swiftSettings: [
    .define("FLEXLAYOUT_SWIFT_PACKAGE"),
  ]
)

Added by OhKanghoon in Pull Request #226

1.3.32

1 year ago

Added by Dongkyu Kim in Pull Request #225

1.3.31

1 year ago

Added by Rachik Abidi in Pull Request #223

1.3.30

1 year ago

Fixes issue #219 where including FlexLayout as a dependency of another swift package would fail to build - because it isn't possible to set the preprocessor definition FLEXLAYOUT_SWIFT_PACKAGE without an Xcode project.

Added by Luke Wakeford in Pull Request #221