NavigationView icon indicating copy to clipboard operation
NavigationView copied to clipboard

Neted Navigation with tabView

Open amr-sayed opened this issue 1 year ago • 0 comments

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

amr-sayed avatar Sep 17 '24 23:09 amr-sayed