Is there any way how to synthetically define scene stack (history) with React Native Router Flux? Let's say I have an app, where the user can naturally navigate from A –> B –> C
. I'd like to initiate app on scene C, which has the same history as natural behavior (A -> B -> C
), so user navigates back to B
from initially opened scene C
.
EDIT: I guess it should be somehow achievable by using Redux Persist, but I've found this related issue.
I managed to do it with a fake empty initial scene. It's very hacky solution and animation from C to B still doesn't work correctly.