stackotter

Results 193 comments of stackotter

I've fixed the label issue on `main` now (just an oversight on my part), but I can't reproduce the checkmark issue. I've tried on both Ubuntu 22.04 and Ubuntu 24.10....

Yeah, I should be doing that, at least for changes bigger than a commit or two. Given that I'm the only maintainer I would just be instant merging my own...

Ok thanks for the feedback, I'll take that on board. Regarding the checkbox issue: does the issue ever occur if you just have a single app with a checkbox? If...

And since the creation of this issue, SwiftCrossUI has already been bumped to Swift 5.10 😉 I won't be working on this any time soon due to other more pressing...

I haven't got `LazyVGrid` or `LazyHGrid` alternatives yet, they will get a bit complicated to implement correctly, but a `Grid` isn't too far off being possible.

Which Swift version and Windows version are you using? I believe I know why `main` is undefined, but I'm not sure why anything was looking for it in the first...

There's another similar, possibly related, issue with linking between targets. All of the SwiftCrossUI symbols referenced from the backend target documentation pages don't link back to the SwiftCrossUI target (they...

Wasm is cool and trendy, but results in relatively large initial downloads, and also complicates writing cross platform code a lot cause suddenly none of the file APIs work anymore...

> This is particularly a problem for controls like `` (Picker) since those differ greatly between browsers. Do `element.offsetWidth` and `element.offsetHeight` not work for native elements? I’m pretty sure I’ve...

In GtkBackend, to compute natural sizes of widgets, we just remove any existing width or height requests imposed by SwiftCrossUI and ask for `sizeRequest` (and then put the width and...