Hi, i solved it, before navigation animation i hide navigation.
SearchBar().onTapGesture {
if #available(iOS 17.0, *) {
withAnimation(.default) {
hideNavigationBar = true
viewModel.start()
}}}
.onDisappear {
if #available(iOS 17.0, *) {
hideNavigationBar = false
} }