Posts

Post not yet marked as solved
3 Replies
This seems awkward but here's how I made it work class Settings {     @AppStorage("key") var property = ""     static var shared: Settings { .init() } } then in Views struct MyView: View {    @AppStorage("key") var property = Settings.shared.property var body: some View { // the view } }     
Post not yet marked as solved
13 Replies
In that case, maybe it has something to do with Xcode 11 beta, try changing the command line tools from 11.0 to 10.2, I'd also remove Xcode 11 temporarily.Hope this helps! I can't reproduce it anymore
Post not yet marked as solved
13 Replies
I think I have found the cause, you have to comment out these two methods in your projects!WKInterfaceDevice.current().systemName WKInterfaceDevice.current().systemVersion