Alternative to NavigationView for sheets

Hello everyone. I'm using a NavigationView inside a sheet to be able to add a navigation title.

NavigationView {
    List {
        ...
    }    
    .navigationTitle("Title")
}

And this is how it looks

The issue is that NavigationView is deprecated, and Xcode recommends replacing it with NavigationStack

NavigationStack {
    List {
        ...
    }    
    .navigationTitle("Title")
}

But now the title (by default, just when you open the sheet) looks different, it's like a bit scrolled.

Does someone know a solution for this?

This might not be correct, but I remember seeing this somewhere?

.navigationTitle("Title")
.navigationBarTitleDisplayMode(.large)

Something like that?

Alternative to NavigationView for sheets
 
 
Q