NavigationView
NavigationView copied to clipboard
Neted Navigation with tabView
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