Thank you :)
Post
Replies
Boosts
Views
Activity
Seems to be macOS only at the moment.
https://developer.apple.com/documentation/swiftui/menu
Could fix this issue by using.
var sidebar : some View {}
was using before
var body : some View {}
Adding ToolbarItems to iOS sheets actually works, if you put the content of the sheet inside a NavigationView. But shouldn't be like that.
Please try to replace body with sidebar, which looks like the following code:
var sidebar: some View {
List {
if sidebarType == .full || sidebarType == .homes {
Text("Homes")
.font(.headline)
ForEach(homeStore.homes) { home in
NavigationLink(destination: HomeView(home: home), tag: home.id.description, selection: $selectedHomeId) {
Label(home.name, systemImage: "house")
}
}
}
}
.listStyle(SidebarListStyle())
.navigationTitle(sidebarType == .homes ? "Homes" : "Other")
.navigationBarItems(trailing: SettingsButtonView())
}
var body: some View {
NavigationView {
sidebar
ContentView()
}
}
Can confirm this issue. Started to appear in beta 2.
Can confirm this. None of my apps is working on macOS. Hope this is fixed when running on macOS 11 Beta 5.
Same issue here. Had to replace Menu with multiple Buttons in a row.
Also some Sheets don't dismiss when closed using a ToolbarItem. It's totally annoying. The behavior changes with every beta.
It‘s a bug introduced in one of the latest Big Sur Betas (at least for me) ... No workaround found yet.
Hi,
Why do you think that? Because of App Store Connect? Note that taxes are also deducted from your sales. So you won't have exactly 85%.
I think you could simply remove the IAP from Sale or remove it entirely. That should cancel future renewals.
You mean 23%. Notice that taxes are also included in your Sales :)
The issue is resolved in 11.1
There's another issue, where NavigationLink doesn't even work if used in a ScrollView instead of a List. This issue was introduced in 14.5 beta 1 and isn't fixed yet. Console just tells to file a bug and that the view can't be displayed.
Good question. Did you manage to "send" a share to anyone using SwiftUI? Even this is impossible for me ... (And everything works fine in UIKit for me).