I was missing the { from ToolbarItem
var body: some View {
NavigationStack {
Text("Home")
.toolbar {
ToolbarItem(placement: .navigationBarLeading) {
NavigationLink {
AccountView()
} label: {
Image(systemName: "gearshape")
}
}
}
}
}