I hear somewhere here that when we navigate to screen RNN will wait until every element loads and only then visually navigates to this screen? And because of this we have this pause between our touch and navigation animation?
And solution was to hide screen elements conditionally and show them in timeout so RNN will show screen faster?
@rendomnet There is a property that enables you to ignore this behavior, look for waitForRender in documentation.
@hadimostafapour I did not found it in official documentation.
So by default it is NOT waits? And if I don't want pause between pushing I do not need to set anything
By default it does not wait. You can use the waitForRender option if you do want to wait for it to render.
Most helpful comment
@rendomnet There is a property that enables you to ignore this behavior, look for
waitForRenderin documentation.