Thanks for your reply.
Yes, the issue is present in a minimal test project. Here is the full code to demonstrate the bug:
import SwiftUI
@main
struct BugDemoApp: App {
var body: some Scene {
WindowGroup {
NavigationStack {
List {
}
.toolbar {
ToolbarItem(placement: .bottomBar) {
Button {
} label: {
Image(systemName: "apple.logo")
}
}
}
}
}
}
}
This behavior is also visible in system apps, for example in Notes and Reminders.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: