stackotter

Results 238 comments of stackotter

#278 addressed many of the major performance issues in SwiftCrossUI by taking inspiration from SwiftUI's less-than-ideal performance-critical approximations discussed above. This made some code an order of magnitude faster, and...

I believe that we can avoid restarting window updates when the clamped window size doesn't match the actual window size, because since #278 the non-pure steps before clamping the window...

> My concern with resizable spinners is that I'll often do something like > > ```swift > HStack { > Spacer() > > ProgressView() > > Spacer() > } >...

Here's what I've found from testing locally; ## GtkBackend and Gtk3Backend - Work perfectly. ## AppKitBackend - Spinner animates its size kinda weirdly when switching between enabled and disabled. I...

There’s a backend method called setEnvironmentChangeHandler or something like that. That’s where we currently observe system theme changes and would be where timezone observation should live as well.

I think I've gone through and closed all of the review comments that have been addressed and commented on ones that I have more questions about. Regarding the GtkBackend TimePicker...

I think you'll have to run `./generate.sh && ./format_and_lint.sh` to fix those Gtk build issues. I changed some things about the generation

I've just been testing out the ControlsExample on my various machines, and noticed that the GtkBackend really spams the time picker not implemented warning. It might be worth updating it...

When I click a day in the GtkBackend Calendar picker, it selects the day prior for some reason 🤔

And when I click 'reset date to now', the focus ring stays on the date that I previously selected, rather than the programatically selected date. Maybe that's just a Gtk...