Rightpoint / Stackable

Supercharged UIStackViews for Swift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add Swift function builder support like SwiftUI uses

ZevEisenberg opened this issue · comments

Tired:

stack.stackable.add([
      logo,
      30,
      "Example Views",
      10,
      cells
          .outset(to: view)
          .margins(alignedWith: stack),
      UIStackView.stackable.hairlines(around: cells)
          .outset(to: view),
      20...,
      "Copyright Rightpoint",
  ])

Wired:

stack.stackable.add {
      logo
      30
      "Example Views"
      10
      cells
          .outset(to: view)
          .margins(alignedWith: stack)
      UIStackView.stackable.hairlines(around: cells)
          .outset(to: view)
      20...
      "Copyright Rightpoint"
  }