Hello,
I have a standalone WatchOS project using SwiftUI for the interface. During the App's init (), I trigger a Swift function call, that does some background activity in a worker thread. By default, the SwiftUI View shows a single label with "Hello World". The result of the worker thread will require an arbitary View to be shown, for eg., I want to show a View with four Labels now. In my use case, the layout for the View, can only be calculated at runtime.
Is there a way to arbitrarily manipulate a SwiftUI based View from Swift code at runtime?
Thanks!