stackotter
stackotter
The documentation site now includes documentation for each of the 5 backends, but for whatever reason these targets are missing source code links. I assume it's something to do with...
For whatever reason, Apple's Foundation exposes typealiases for Combine's `ObservableObject` and Combine's `Published`. ObservableObject typealias: https://developer.apple.com/documentation/foundation/observableobject This means that if you import `Foundation` in a file that uses SwiftCrossUI's ObservableObject...
Currently UIKitBackend's Picker implementation produces pickers that look like so:  This style of picker doesn't act anything like the pickers rendered by other backends and makes it tricky to...
Some backends size `Picker`s based off the currently selected item, while others size them based off their largest item. We probably want this sort of sizing behaviour to be consistent...
SwiftCrossUI doesn't have any form of localization at all yet. We'll probably lean towards something similar to SwiftUI's strings file based localization method, but I'm open to suggestions! We ideally...
Groups in ZStacks should lay out their children along the z axis but will default to the orientation of the ZStack's container instead. Fixing this will involve: 1. Adding the...
For some reason split views get laid out very incorrectly on the initial load, but snap to a correct layout as soon as some state changes or the window gets...
When getting users to choose minimum and maximum values, it'd be useful to have a built-in double-ended slider (with two handles). It doesn't seem like any of the underlying frameworks...
This is the tracking issue for web support in SwiftCrossUI. I currently don't really have any plans but figured it'd be good to have a place to dump ideas. I'll...