add bar button item to navigate to profile on iphone

This commit is contained in:
Satindar Dhillon 2022-02-23 09:31:56 -08:00
parent 578dd80be0
commit a9580bb006

View file

@ -259,6 +259,14 @@ public struct HomeFeedView: View {
if UIDevice.isIPhone {
NavigationView {
conditionalInnerBody
.toolbar {
ToolbarItem {
Button(
action: { print("Profile") },
label: { Image.profileTab.padding() }
)
}
}
}
} else {
conditionalInnerBody