Luis Padron

Results 118 comments of Luis Padron

I'm also experiencing this issue. Seems to be random at times? I have models that look like: ```swift class Class { var id: UUID var semester: Semester? //... } class...

Thanks for confirming! Now, just need a review from a maintainer (:

@armanarutiunov Looks like I didn't see the comment in time sorry about that! Id make a new PR to review those separately

@natecook1000 Would you happen to have an update on this issue 👀 Ran into this today but when trying to create a command like `swift run` which allows forwarding arguments...

Actually think #304 is just for option arrays. Here is an example where this support is missing: ```swift struct RunCommand: ParsableCommand { @Option() var path: String? @Argument(parsing: .unconditionalRemaining) var arguments:...

Feels like these should be made in `Just` (https://github.com/UrbanCompass/Snail/blob/main/Snail/Just.swift) instead of `Observable`. Seems like `Observable` should not behave like `Replay`.

Yeah great thoughts and discussion @chris-lapilla, totally agree that observable shouldn't guarantee anything about a buffer like `Replay` does, hence my comment about moving this to `Just`. I think the...

We can also look at the implementations for [RxSwift](https://github.com/ReactiveX/RxSwift/blob/main/RxSwift/Observables/Map.swift) and Combine. Which is related to what @chris-lapilla proposed: ```swift final private class MapSink: Sink, ObserverType { typealias Transform = (SourceType)...

You need to adjust the buttons size to fit the font, you can do this with the data source methods.

You're right, my bad. This does seem like a bug that should be looked into. The code which handles this constraint for the button: ```swift let size = buttonSize ??...