How to fix overlapped navigation titles in SwiftUI

Issue #756

1
2
3
4
5
6
7
8
9
extension NavigationLink {
func fixOverlap() -> AnyView {
if UIDevice.current.userInterfaceIdiom == .phone {
return self.isDetailLink(false).erase()
} else {
return self.erase()
}
}
}

Read more


Updated at 2021-01-20 21:59:41

Comments