Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Swift function builder support like SwiftUI uses #19

Open
ZevEisenberg opened this issue Sep 11, 2020 · 0 comments
Open

Add Swift function builder support like SwiftUI uses #19

ZevEisenberg opened this issue Sep 11, 2020 · 0 comments

Comments

@ZevEisenberg
Copy link
Contributor

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"
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant