MiaKoring
MiaKoring
```product '_CryptoExtras' required by package 'citadel' target 'Citadel' not found in package 'swift-crypto'``` Thats the error I get. I just added version version 0.7.0 as dependency to my package. I...
I’m unable to add the package as Dependency. I tried resetting package caches, deleting Derived Data, restarting Xcode. I’m currently on Version 16.2 of Xcode
This pr fixes the issue of only the last items getting removed from the rendered content, even if they werent the ones changing and item insertion/reordering correctness like mentioned in...
Like the title says, I changed the protocol to be publicly available, allowing for more third party view update triggering property wrappers, i.e. @Query or @AppStorage Also I renamed it...
This PR adds: - EnvironmentValues/with(key:, value:) //equivalent to with(keyPath: newValue:) but for non-builtin values - view modifiers for both builtin (key path) and not builtin (EnvironmentKey) values For demonstration and...
Fixes https://github.com/stackotter/swift-cross-ui/issues/237 **Visually Breaking Change for some existing UIs using ProgressSpinner** This PR makes ProgressSpinners resizable on supported backends. Unsupported Backends change the container size without changing how the Widgets...
SwiftUI allows inserting Observable (@Observable) directly into the environment without EnvironmentKeys (ObservableObjects through .environmentObject). You would access them through @Environment(XYZ.self) and @EnvironmentObject(ZYX.self) respectively. I believe we should add this ourselves,...
It always removes the last view node instead of removing the one that actually got removed. To fix this we need to know which node corresponds to which element. I’m...
https://developer.apple.com/documentation/SwiftUI/TimelineView TLDR: A view redrawing periodically in specified intervals. Possible nice additions: - redraw on minute change ( 10:45 -> 10:46 instead of after 60 seconds where it could be...
On macOS 26 in darkmode the items currently look like they were disabled, even though they are not and are very hard to read. I'm going to look into it...