NavigationView { ScrollView{ .navigationTitle("Home") .toolbar { ToolbarItemGroup(placement: .bottomBar) { VStack{ HStack{ NavigationLink( destination: Home(), label: { Image(systemName: "house") .resizable() .frame(width: 25.0, height: 20.0) .foregroundColor(.blue) .padding() }) } } I cant use NavigationLink(destination : Text("Go home page"),label:{}
It is menu bar I want to freeze this menu bar when I scroll down or up
Thank you so much