We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I have a question regarding MijickNavigationView what if I need to make nested navigation and I want to make the tabView appear in the all screens
if we are using the native navigationView for each tab I made it NavigationView
TabView(selection: $selectedTab) { NavigationView { HomeView() .padding(.bottom, 10) .tag(0) } NavigationView { Text("") .padding(.bottom, 40) .tag(1) } }
for that the tabView will appear in all screens but, what happened in this library it will push the new view and hide the tabView
Would you please help me how to chive this with MijickNavigationView
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I have a question regarding MijickNavigationView what if I need to make nested navigation and I want to make the tabView appear
in the all screens
if we are using the native navigationView for each tab I made it NavigationView
TabView(selection: $selectedTab) {
NavigationView {
HomeView()
.padding(.bottom, 10)
.tag(0)
}
NavigationView {
Text("")
.padding(.bottom, 40)
.tag(1)
}
}
for that the tabView will appear in all screens but, what happened in this library it will push the new view and hide the tabView
Would you please help me how to chive this with MijickNavigationView
Thanks
The text was updated successfully, but these errors were encountered: