Hi,
with the previous beta all navigation links place within a toolbar like
stopped working. Buttons still worked though. As a temporary solution I placed on my toolbar items into a Menu like
Now, in beta 5 this has stopped working as well. Again buttons still work and placing navigation links outside of the navigation bar works as well.
Does anyone else have this issue?
with the previous beta all navigation links place within a toolbar like
Code Block swift view.toolbar { ToolbarItem(placement: .navigationBarTrailing) { NavigationLink(destination: SearchView()) { Label("Search", systemImage: "magnifyingglass").font(.title2) } } }
stopped working. Buttons still worked though. As a temporary solution I placed on my toolbar items into a Menu like
Code Block swift view.toolbar { ToolbarItem(placement: .navigationBarTrailing) { Menu { NavigationLink(destination: SearchView()) { Label("Search", systemImage: "magnifyingglass").font(.title2) } } label: { Image(systemName: "ellipsis.circle").imageScale(.large) } }
Now, in beta 5 this has stopped working as well. Again buttons still work and placing navigation links outside of the navigation bar works as well.
Does anyone else have this issue?