Laszlo Teveli

Results 19 comments of Laszlo Teveli

Hi @nighthawk, Thanks for reporting this issue, very useful finding! I took some time reviewing the related code paths, looks like it's related to an issue with embedding expressions in...

Status update: I managed to identify the issue. The expression "(toggle == true) and (url exists)" fails because the nested parentheses caused an issue, and the expression matcher only processes...

Thanks a lot for your feedback and detailed bug report! It’s a really interesting issue indeed, I’ll look into it as soon as possible

Currently it seems like the data is coming from a manually maintained mongoDB instance. It would be great to offer this maintenance work to the community as well - maybe...

The same functionality in the swift-algorithms package is called [`uniqued()`](https://github.com/apple/swift-algorithms/blob/main/Guides/Unique.md)

Thanks for the update on your continued work on this @patrickt. You mentioned a few languages on your tree-sitter migration roadmap, but I noticed that Swift (which the original issue...

> The readme states to set the maxHeight to infinity Where does README.md state this?

Just to double check, I created an empty mac app with your example: ```swift import SwiftUI import Flow @main struct ExampleApp: App { var body: some Scene { WindowGroup {...

Correct. If we do not set a maximum, it indeed takes up all the available space. It's a deliberate design decision. In this regard the builtin HStack/VStack works the same...

Thanks to #1 it allows HFlow/VFlow to be conditionally included in projects that support older deployment targets. The Layout protocol was introduced in iOS 16. Theoretically, it’s possible to back-deploy...