-
As the title, there is any ongoing/future plan to support SwiftUI?
-
I know how to create ARView in SwiftUI ... but the rest function has not been implemented yet. Does anyone build the demo app using SwiftUI ??? I would like to know how to use this package in SwiftUI.…
-
Loop may offer in-built SwiftUI integration on Apple platforms without creating an extra "LoopUI" package.
Loop only needs to provide standard data funnels to connect feedback loops with SwiftUI, a…
-
How can I use ItemSnapshotList data type of shared part of kmp in swiftUI
-
SwiftUI uses `ListCoreScrollView` and `ListCoreClipView` under the hood. For now the workaround, is to avoid using `List`
```swift
List {
ForEach
}
```
use
```swift
VStack {
For…
-
### Description
Using the newest snapshot of the swift 6.0 compiler, I encounter a crash when trying to compile swiftui-introspect
### Reproduction
```sh
git clone https://github.com/siteline/swif…
-
How can we make swift-Format formatting
Text("ssssssssssss").background(Color(hex: 0x333333)).font(Font.caption).padding(.horizontal, 8).padding(.trailing, 8)
to
Text("ssssssssssss")
.backgr…
-
I noticed an unusual behavior where category items multiply when the `colorScheme` changes while the `emojiPicker` is open in `SwiftUI` using the `.emojiPicker` modifier. It appears that these categor…
-
Hey team,
I’m using the Vapi iOS SDK to build a voice assistant, where the user can say something like “Hey” to trigger a connection to Vapi and handle tasks like explaining content. However, with …
-
Currently, we have to add a delay for automatic back navigation.
When done synchronously without delay, the onAppear of the previous view (ContentView) does not run as the previous view may be consid…