Closed
Description
When I use a function like this:
driverCreateTrip: function(){
this.props.navigator.push({
title: "New Trip",
component: DriverCreateAccount,
});
},
, if I have already pushed the DriverCreateAccount component in a previous .js file, then it seems I can't use the push again, does it mean I have to use pop to get back to where I want to go? I can't push the same component twice to the stack?