Change "Cancel" to "Done" in SwiftUI on Apple Watch

When presenting a view on the watch I get a "Cancel" button in the navigation bar that dismisses the view.

I want to change the text to "Done", but when I try to change it using .navigationBarTitle modifier it does no longer trigger a dismiss.

Is there a way I can change the title but keep the dismiss functionality?
Did you have any luck changing this? Setting it in the hosting controller does not seem to have any effect

This can be accomplished in awake with context:

override func awake(withContext context: Any?) {

        setTitle("<")

    }
Change "Cancel" to "Done" in SwiftUI on Apple Watch
 
 
Q