🚨 PSA: In SwiftUI, if you use ToolbarItem that has a Button with Image as its label, you'll end up with a very small tappable area of the button. You need to use a Label to avoid that effect:
Label("Start", systemImage: "play").labelStyle(.iconOnly)

