What UX do users not yet on iOS14 experience when they scan or click an app-clip link?
Post
Replies
Boosts
Views
Activity
Anyone know why the following code doesn't show an image in a Mac-catalyst toolbar? I've tried with both Label and Image.
I've attached an image of what this looks like.
This is with Xcode 13.4 running on Monterey, but Ive seen something similar with Xcode 14 and Ventura.
struct ContentView: View {
var body: some View {
NavigationView {
Text("Hello, world!")
.padding()
.toolbar {
ToolbarItemGroup(placement: .primaryAction) {
Menu(content: {
Button("Test", action: {})
}, label: {
// Label("Menu", systemImage: "plus")
Image(systemName: "plus")
})
}
}
}
}
}