1
0
mirror of git://jb55.com/damus synced 2024-09-16 02:03:45 +00:00

router: use tap gestures instead of nav links

I was hoping this would fix something but it did not
This commit is contained in:
William Casarin 2023-09-10 18:23:07 -07:00
parent c13f29e98c
commit e30d38e69f
2 changed files with 7 additions and 7 deletions

View File

@ -38,11 +38,10 @@ struct EventProfile: View {
var body: some View {
HStack(alignment: .center) {
VStack {
NavigationLink(value: Route.ProfileByKey(pubkey: pubkey)) {
ProfilePicView(pubkey: pubkey, size: pfp_size, highlight: .none, profiles: damus_state.profiles, disable_animation: disable_animation)
ProfilePicView(pubkey: pubkey, size: pfp_size, highlight: .none, profiles: damus_state.profiles, disable_animation: disable_animation)
.onTapGesture {
damus_state.nav.push(route: .ProfileByKey(pubkey: pubkey))
}
}
VStack(alignment: .leading) {
EventProfileName(pubkey: pubkey, profile: profile, damus: damus_state, size: size)

View File

@ -28,9 +28,10 @@ struct MaybeAnonPfpView: View {
.font(.largeTitle)
.frame(width: size, height: size)
} else {
NavigationLink(value: Route.ProfileByKey(pubkey: pubkey)) {
ProfilePicView(pubkey: pubkey, size: size, highlight: .none, profiles: state.profiles, disable_animation: state.settings.disable_animation)
}
ProfilePicView(pubkey: pubkey, size: size, highlight: .none, profiles: state.profiles, disable_animation: state.settings.disable_animation)
.onTapGesture {
state.nav.push(route: Route.ProfileByKey(pubkey: pubkey))
}
}
}
}