damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 77b1b895a589970db1bf525fbc9005eaaab28cae
parent 735fa970890a68c5c18c4883515a46901e263258
Author: ericholguin <ericholguin@apache.org>
Date:   Mon, 30 Sep 2024 19:34:21 -0600

ux: fix navigation placement in profile edit view

This PR fixes the issue with the placement of the back navigation button in the profile edit view for iOS 18 devices:

Changelog-Fixed: Fixed back nav button placement in profile edit view

Signed-off-by: ericholguin <ericholguin@apache.org>

Diffstat:
Mdamus/Views/Profile/EditMetadataView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/Profile/EditMetadataView.swift b/damus/Views/Profile/EditMetadataView.swift @@ -218,7 +218,7 @@ struct EditMetadataView: View { .background(Color(.systemGroupedBackground)) .navigationBarBackButtonHidden() .toolbar { - ToolbarItem(placement: .principal) { + ToolbarItem(placement: .topBarLeading) { navBackButton } }