Screens with router_b were made the same way as screenDetailsA2.ux
If we navigate to RouterB, and click details we’ll get screenDetailsB2.
Than click RouterA.ux via bottom tabbar, and than click details to reach screenDetailsA2
And than back to RouterB.ux via bottom tabbar to prees back Clicked={"back»}
At this point we getting an error (Unable to navigate to route: screenA1)
Questions:
Is able to switch off swiping between screens in PageControl (not transition animation)
Are we able to implement «SwipeToBack» inside internal pages? (screenDetailsA2, etc) Is there some features?
We have some errors at start, but all works fine:
InternalError: Can not navigate to 'screenA1', not found!
InternalError: Unable to navigate to route: screenA1
InternalError: Can not navigate to 'screenB1', not found!
InternalError: Unable to navigate to route: screenB
Do you know something about issue when project got 3 or more tabs and switching between first one and last going through all rest pages. What I exactly mean when we have got 3 tabs and I stay at first and click 3rd, second screen always blinking between switching.
It’s a bit difficult to debug this based only on a few pieces of your example. If you can upload a full repro case to https://www.dropbox.com/request/ZgndLtJQm5eGzG9cicGK (only visible to Fuse employees), we’ll take a closer look.
Do you know something about issue when project got 3 or more tabs and switching between first one and last going through all rest pages. What I exactly mean when we have got 3 tabs and I stay at first and click 3rd, second screen always blinking between switching.
This happens because the PageControl is based on linear navigation where each page has a fixed position relative to the other pages. If you instead use direct navigation or hierarchical navigation (for instance in the way you’re already using Router / Navigator) then you can avoid this behavior.
It’s a bit difficult to debug this based only on a few pieces of your example. If you can upload a full repro case to https://www.dropbox.com/request/ZgndLtJQm5eGzG9cicGK (only visible to Fuse employees), we’ll take a closer look.
Hi there! fuse_movies.zip already uploaded! Check this out please!
Please help us with routers.
Sergey: I downloaded and started preview in your app, but can’t get it to crash. Do you have steps to reproduce?
Next time, when you have multiple issues, please split up into multiple threads, where you explain each issue/question in detail with test case, steps to reproduce and code for each issue. It is a bit confusing to understand what you need help with here, and what is most critical.
Sergey: I downloaded and started preview in your app, but can’t get it to crash. Do you have steps to reproduce?
Next time, when you have multiple issues, please split up into multiple threads, where you explain each issue/question in detail with test case, steps to reproduce and code for each issue. It is a bit confusing to understand what you need help with here, and what is most critical.
The peformance problems have been investigated: it turns out only to be a problem in desktop preview and builds (on mobile devices it runs fine), and those problems are gone in the next version of our text engine, soon to be merged. It was due to our old desktop text renderer dealing poorly with non-ascii characters.
The peformance problems have been investigated: it turns out only to be a problem in desktop preview and builds (on mobile devices it runs fine), and those problems are gone in the next version of our text engine, soon to be merged.
The problem here is that you have multiple navigators in the same scope, so it doesn’t know what navigator is supposed to navigate to ScreenDetailsNews.
The above accounts for both of the reported problems, so considering this case closed until further nothice.
I reccommend removing DirectNavigation and going back to multi-level navigation with nested <Navigator>, looking at your commented-out sections this looks like your original design. If this change was done to avoid transition-problems, please re-post that as a separate issue and we’ll help out with that.