You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FWIW I ultimate removed all geometry readers from my app that are used in views in navigation view, not only because of this issue but also because on iOS 14 geometry reader causes lots of issues in navigation view when any sub view's frame height is set with it. Instead I'm relying on using window.screen.bounds.width and window.screen.bounds.height for measurements for now.
Hi, first thanks for package.
There is an issue if Textfield is within Geometry reader, last one keeps keyboard reopening because of view redrawn.
GeometryReader { metrics in
VStack{
TextField("Username", text: $username)
.padding(9)
.background(focusedField == .username ? Color.red : Color(.systemGray6))
.cornerRadius(8)
.focusedLegacy($focusedField, equals: .username)
}
}
Thanks,
Aram
The text was updated successfully, but these errors were encountered: