I got a NavigationLink
inside a Form
(screenshot 1). When I click, the navigation goes to a detail page (screenshot 2). When I go back by using either the back button or swipe gesture, the NavigationLink
turns into a highlighted state (screenshot 3).
See below my code.
How should I fix this issue? Thanks.
Home (where the first navigationlink is):
NavigationView {
// Content
VStack {
// Navigation to profileview
NavigationLink(destination: ProfileView(showing: self.$profileClicked).environmentObject(self.user),
isActive: self.$profileClicked) {}
}
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .navigationBarTrailing) {
Button(action: {self.profileClicked.toggle()}) {
Image(systemName: "person.circle.fill")
}
}
}
}
Profileview (screenshot 1):
VStack {
// ...
List {
Section {
NavigationLink(destination: AccountInfoView().environmentObject(self.user)) {
HStack {
Image(systemName: "person.fill")
.foregroundColor(Color("main"))
Text("Account information")
}
}
}
}
Spacer()
// ...
}
.navigationTitle("Profile")
}
Accountview (2nd screenshot)
var body: some View {
VStack {
Form {
HStack {
Text("ID:")
.padding(8)
Spacer()
Text(self.user.id)
.foregroundColor(Color.gray)
.font(.system(size: 13))
.lineLimit(1)
}
HStack {
Text("Email:")
.padding(8)
Spacer()
Text(self.user.email)
.foregroundColor(Color.gray)
.lineLimit(1)
}
}
}
.navigationTitle("Account")
}
Just add
.onAppear
onList
and setselectionStyle
tonone
make sure to have everything wrapped up in an
NavigationView