stackotter
stackotter
We should eventually update WinUIBackend to use the latest version of WinUI 3. If I remember correctly, it's currently using the WinUI from WindowsAppSDK 1.5 preview 1. This probably involves...
I'll fill out this description once the PR is more complete. I'm just creating the PR now as a place to dump reminders for myself. ## Todo - [ ]...
This change will be more involved that it sounds, because at the moment every single view has to be backed by a widget, but I think a system that allowed...
A release build of CounterExample currently takes about 3 minutes to compile on an M2 MacBook Air. Much is spent building SwiftCrossUI and its dependencies. The actual app doesn't take...
Maxim on the Discord server mentioned that their WinUIBackend app's title bar is white even though they have a dark theme. Look into setting the window's systemBackdrop to mica maybe?
The quick start docs should be self-contained and should answer all beginner Swift Bundler questions in addition to SwiftCrossUI questions. Therefore we should have a section that discusses app distribution...
At the moment SCUI_DEFAULT_BACKEND is only respected when targeting desktop platforms, because on other platforms we have to use SwiftPM conditionals. To allow SCUI_DEFAULT_BACKEND to override the backend used when...
At the moment SwiftCrossUI prints all of its warnings straight to stdout. We should move to using a proper logger so that we can easily re-route SwiftCrossUI's output to wherever...
## ScrollView Scroll view layout is surprisingly tricky. The main complicating factor is choosing whether or not to include the scroll bars. In certain situations, it can look like you've...
At the moment there's no way to influence the idealWidthForHeight or idealHeightForWidth of a view via view modifiers. `frame(idealWidth:idealHeight:)` currently only sets the full idealSize of the underlying view but...