add navigation link to show profile view from home feed tab bar item

This commit is contained in:
Satindar Dhillon
2022-02-23 09:41:19 -08:00
parent a9580bb006
commit 762747be95

View File

@ -261,13 +261,14 @@ public struct HomeFeedView: View {
conditionalInnerBody
.toolbar {
ToolbarItem {
Button(
action: { print("Profile") },
NavigationLink(
destination: { EmptyView() },
label: { Image.profileTab.padding() }
)
}
}
}
.accentColor(.appGrayTextContrast)
} else {
conditionalInnerBody
}