From 762747be95dbf34d76aaeae9175c057344ee3f97 Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Wed, 23 Feb 2022 09:41:19 -0800 Subject: [PATCH] add navigation link to show profile view from home feed tab bar item --- .../Sources/Views/PrimaryContainerViews/HomeFeedView.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift b/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift index ade88c42a..0fb5d0dde 100644 --- a/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift +++ b/apple/OmnivoreKit/Sources/Views/PrimaryContainerViews/HomeFeedView.swift @@ -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 }