Closed dmikots closed 2 years ago
Could you please provide the full TabCoordinator
implementation?
Could you please provide the full
TabCoordinator
implementation?
var body: some Scene {
WindowGroup {
NavigationStack {
MainCoordinator().view()
}
}
}
My problem was in NavigationStack (16 iOS)
But now, how can I disable navigationBar when push?
You're push
ing a view inside a NavigationCoordinatable
, a navigation bar is expected. You can hide the navigation bar on UserProfileView()
with .navigationBarHidden(true)
. This isn't a Stinsen question, but a SwiftUI one.
.navigationBarHidden(true)
thx u sir!
Hi! When I use push, I have empty view with back Botton on toolbar. But when I use .modal or .fullScreen - everything is ok