I have to use for: instead of isPresented. That was the issue.
Here are my solution.
Button(action: {
navPath.append(1)
}) {
Text("Alle Spieler anzeigen")
Image(systemName: "person.3.fill")
}
2 NavigationDestination
.navigationDestination(for: TeamData.self) { team in
PlayerViewiPad(team: team)
}
.navigationDestination(for: Int.self) { noTeam in
PlayerViewiPad(team: TeamEmptyData)
}