"dependencies": {
"react": "^15.1.0",
"react-native": "^0.27.2",
"react-native-drawer": "^2.2.2",
"react-native-router-flux": "^3.30.0",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"react-native-button": "github:ide/react-native-button"
}
I tried current path and length with "currentRouter" but, got "undefined"
here is capture of "Actions" in my component

What exactly do you expect to get? The number of routes you have?
One idea I have for this is maybe keep track of the stack in redux?
I expect get size of routes or list of routes.
Do I have to stack or track by myself?
I have a tangentially related question, is there a way to get the size of the stack before we do an Actions.pop()?
In my case i want the type PUSH_OR_POP on transitions. And i need to know the size of the stack to know if the action was a pop (and how many scenes it poped) or a push of a new scene.
Same question
+1
Most helpful comment
I have a tangentially related question, is there a way to get the size of the stack before we do an Actions.pop()?