iOS 16 SwiftUI keyboard safe area bug when push

Hi! Maybe someone found the same bug on iOS 16

There's a strange keyboard issue on iOS 16 when pushing a new screen and trying to swipe back. The keyboard safe area is not updated when you return from the pushed screen.

Here some example

https://media.giphy.com/media/UaNesUynQ4O9fFBUUG/giphy.gif

NavigationView{

            ZStack{

                NavigationLink(isActive: $isActive) {

                    TextField("Texte", text: .constant(""))

                } label: {

                    EmptyView()

                }

                VStack {

                    Color.red

                    Button("Press me") {

                        isActive.toggle()

                    }

                }

            }

        }.navigationViewStyle(.stack)
iOS 16 SwiftUI keyboard safe area bug when push
 
 
Q