// ContentView.swift var body: some View { VStack { NavigationView { SidebarView() StartPage() .frame(minWidth: 600, minHeight: 500) } .navigationTitle("app-name") .toolbar(id: "PackageActions") { ToolbarItem(id: "upgradePackages") { Button { appState.isShowingUpdateSheet = true } label: { Label { Text("navigation.upgrade-packages") } icon: { Image(systemName: "arrow.clockwise") } } .help("navigation.upgrade-packages.help") } ToolbarItem(id: "addTap") { Button { appState.isShowingAddTapSheet.toggle() } label: { Label { Text("navigation.add-tap") } icon: { Image(systemName: "spigot") } } .help("navigation.add-tap.help") } ToolbarItem(id: "installPackage") { Button { appState.isShowingInstallationSheet.toggle() } label: { Label { Text("navigation.install-package") } icon: { Image(systemName: "plus") } } .help("navigation.install-package.help") } ToolbarItem(id: "installPackageDirectly") { Button { print("Ahoj") } label: { Label { Text("Install package directly") } icon: { Image(systemName: "plus.viewfinder") } } } } } } }