SwiftUI-Coordinators-Example
SwiftUI-Coordinators-Example copied to clipboard
iOS 14 and few navigation(item:)
Hey guys,
did you meet a problem with using couple navitaion(item:) on iOS 14? For me there is a issue, when I change Light/Dark mode on phone, it invoke pop for any of navigation(item:) if they are set in this way:
MainView()
.navigation(item: router.isReadyViewModel1) {
ChildrenView1(viewModel: $0)
}
.navigation(item: router.isReadyViewModel2) {
ChildrenView2(viewModel: $0)
}
Hey! Did you fix the problem? I have the same issue