Carson Katri

Results 218 comments of Carson Katri

Could we just add a `typealias CGAffineTransform = Foundation.AffineTransform`?

I actually started getting Swift setup on Windows last night, and was hoping to try getting this somewhat working over the weekend.

I noticed issues with overlay and background when working on preference keys. In SwiftUI they seem to clip to their parents bounds (which we can do when it’s just a...

No, it doesn’t handle any text styling yet.

A flexible frame should fill the screen: ```swift .frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity) ```

I started work on an abstraction over fetch that matches URLSession, and it could then be supported in swift-request. But it's not in a working state ATM.

Possibly unrelated to your issue, but it looks like you are use the Fiber backend with dynamic layout enabled. I noticed Lazy*Grid & ZStack, which are not supported by the...

This seems like a good thing to automate. Not sure how plausible this is, but maybe: Use SourceKit to get a list of View conforming types from the swiftinterface, and...

That is good for accessing elements inside Tokamak, but you may also want to access outside elements too. Maybe `@Ref` could also accept a selector String?

I'd say the `domAttributes`, definitely gives more control, but is also prone to spelling errors, as opposed to something statically typed. Maybe we'd do `domAttributes(_ attributes: [ElementAttribute: String])`, with a...