Post

Replies

Boosts

Views

Activity

Reply to NavigationLink Clears my 'selection'
Please try to replace body with sidebar, which looks like the following code: var sidebar: some View { List { if sidebarType == .full || sidebarType == .homes { Text("Homes") .font(.headline) ForEach(homeStore.homes) { home in NavigationLink(destination: HomeView(home: home), tag: home.id.description, selection: $selectedHomeId) { Label(home.name, systemImage: "house") } } } } .listStyle(SidebarListStyle()) .navigationTitle(sidebarType == .homes ? "Homes" : "Other") .navigationBarItems(trailing: SettingsButtonView()) } var body: some View { NavigationView { sidebar ContentView() } }
Jul ’20