Skip to content

Commit

Permalink
Fixed navigation title on iOS 18 Beta.
Browse files Browse the repository at this point in the history
  • Loading branch information
msimms committed Jul 17, 2024
1 parent f7aeeb4 commit e63996c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion iPhone App/ActivityView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,9 @@ struct ActivityView: View {
}
}
}
.navigationTitle(self.activityType)
.navigationBarBackButtonHidden(self.activityVM.isInProgress)
.navigationTitle(self.activityType)
.navigationBarTitleDisplayMode(.inline)
.opacity(self.activityVM.isPaused ? 0.5 : 1)
.onAppear() {
if self.activityVM.isStopped {
Expand Down

0 comments on commit e63996c

Please sign in to comment.