Swiftpack.co - daangn/KarrotFlex as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by daangn.
daangn/KarrotFlex 1.1.0
Declarative iOS UI sugar framework built on FlexLayout
⭐️ 112
🕓 2 years ago
iOS
.package(url: "https://github.com/daangn/KarrotFlex.git", from: "1.1.0")

KarrotFlex

CI Status Version License Platform CI

Declarative UI sugar framework built on FlexLayout
👨‍🔧 Beware, Under construction 🧑‍🔧

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

self.someView.flex.define {
  FlexHStack($0) {
    FlexSpacer($0, spacing: 24.0)
    FlexVStack($0) {
      FlexItem($0, view: self.titleLabel)
      FlexSpacer($0, spacing: 8.0)
      FlexItem($0, view: self.descLabel)
      FlexSpacer($0, spacing: 24.0)
      FlexItem($0, view: self.infoLabel)
    }
  }
  .padding(16.0)
}

Requirements

Installation

CocoaPods

pod 'KarrotFlex'

Swift Package Manager

In your Package.swift:

let package = Package(
  name: "Example",
  dependencies: [
    .package(url: "https://github.com/daangn/KarrotFlex.git", from: "1.1.0")
  ],
  targets: [
    .target(name: "Example", dependencies: ["KarrotFlex"])
  ]
)

In your Xcode target:

Add FLEXLAYOUT_SWIFT_PACKAGE=1 to the build setting.
(TARGET -> Build Settings -> Apple Clang - Preprocessing -> Preprocessor Macros)

Author

License

The KarrotFlex is available for free use, as described by the LICENSE (Apache 2.0).

GitHub

link
Stars: 112
Last commit: 1 year ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

v1.1.0
2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/daangn/KarrotFlex/compare/1.0.1...1.1.0

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics