stackotter
stackotter
At the moment, SwiftCrossUI takes `WindowResizability.contentSize` to mean that the window should have a fixed size equal to that of its content view. That's flawed because the size of the...
The SwiftCrossUI Slider API differs from SwiftUI's Slider API in a few ways, and it's kinda annoying when transitioning code between the two frameworks. SwiftUI has a `value:` label for...
I faced an issue when installing Gtk on Windows using vcpkg, so I've updated the docs with a workaround. I'll likely also extend this PR to include the workarounds for...
Currently each backend only support a single picker style. We should support SwiftUI's `pickerStyle` modifier so that we can have more than just each platform's default picker style. Ideally each...
Currently, when a contributor adds additional bindings to GtkCodeGen, there's a high likelihood that they'll end up with a bunch of unrelated changes due to the generator using the contributor's...
At the moment, some backends make heavy use of dictionaries to store information such as button click handlers (such as WinUIBackend and its associated InternalState class). This leads to apps...
At the moment the windows of UIKitBackend apps running under Mac Catalyst are freely resizable, which generally isn't desired.
To reproduce the issue, run WindowingExample on iOS and click `Present error`. ``` SWIFT TASK CONTINUATION MISUSE: presentAlert(backend:) leaked its continuation without resuming it. This may cause tasks waiting on...
UIKitBackend detects system theme changes correctly, and updates control styles accordingly, but doesn't seem to update the app's background colour.
UIKit doesn't support sliders on tvOS. But tvOS's own settings app has plenty of sliders, so I think it'd be reasonable for us to provide a slider implementation for tvOS....