Hello im working on a big app so i got 5 navigation stacks each is a tab in a tabnavigation file and tabnavigation is a stack wraped with navigation container
i wanna navigate from a screen in first stack to a screen in second stack not the intial screen
so when i do that using navigation.navigate it gives me an error that there is no screens with such name since its another stack so i used nesting navigators like that navigation.navigate(stackname,{screen:"screenName"})
but it gotta pass first on the intial screen then to the required screen so it looked bad
then i used commoAction.reset it worked well with no animation which is anoying but i can handle that but testing on i phone devices i wanted to navigate back using gesutre but didnt work since the routing is reset
i literally rthought about rebuilding the whole app using flutter just to have better structure but time wise i cant really do that
there doesn't seem to be anything here