Avatar
Kishikawa Katsumi 12/4/2024 6:50 AM
NavigationSplitView { List(services, id: \.id, selection: $selection) { (service) in NavigationLink(value: service) { Label(service.name, systemImage: "server.rack") .foregroundStyle(.primary) } } .onChange(of: selection, initial: false) { (oldValue, newValue) in if let selection, sessions[selection.id] == nil { showingLoginSheet = true } } .onReceive(publisher) { (notification) in services = ServiceDiscovery.shared.services.sorted { $0.name.localizedStandardCompare($1.name) == .orderedAscending } } .navigationTitle("Services") } detail: { if let selection { if let client = sessions[selection.id] { SharesView(client: client) .id(selection) } } } コードはこう。やってないけどたぶん解決策としてはStackに積むのをサイドバーの選択を変えたときはルートから変えるとたぶんできる気がする。