david-swift

Results 78 comments of david-swift
trafficstars

It is interesting that your workaround works on macOS as the code `items = response.items` never gets executed on Linux. What should be used to update the UI from an...

From version 1.0.0 on (which is not yet released, it's being developed in https://github.com/AparokshaUI/adwaita-swift/pull/46), calling `Idle` explicitly won't be required. If the update system detects an update not being executed...

I added one modifier and a new widget which should hopefully help accomplishing your goal: - Use the [`contentFit(_:)`](https://aparokshaui.github.io/adwaita-swift/documentation/adwaita/picture/contentfit(_:)) modifier for pictures which defines how the content should be resized...

In case you want to crop the image: ```swift Picture() .contentFit(.cover) .data(data) .aspectRatio(1) ``` Otherwise, you can use one of the other cases for the [content fit enum](https://aparokshaui.github.io/adwaita-swift/documentation/adwaita/contentfit) (to resize...

Unfortunately, I'm not able to reproduce this with the same setup (except I installed Xcode via [Xcodes](https://github.com/XcodesOrg/XcodesApp) and am currently on version 15.3). Another, maybe somehow related issue appeared to...

> I have problem with tutorial with localizable programm, when remove localization and yaml convertation all build success :) Did you also get the `adwaita.h` error, @iDevPro? This would be...

@iDevPro I also experienced a problem with the Localizable package after updating to Xcode 16 Beta. I could solve it by simply running `swift run` in the terminal (which succeeded),...

This issue has moved to https://git.aparoksha.dev/aparoksha/adwaita-swift/issues/32

Thanks for opening the request. Cool that you're interested in contributing! The support for inherited signals is definitely something sensible to add. I'll work on this. In your specific case,...

> I was able to achieve the desired effect including the async part, so now all is working great! Did you use `Idle` for this? It seems that often, it...