Q) How do I pass my param to the next page as a copy, so that changes to it don't persist in the previous screen when I go back?
e.g.
showDetails(item) {
this._nav.push(PersonDetailsPage, {
person: item
});
}
So when I view the PersonDetailsPage, I want to be able to make changes, cancel, go back and not have the original object modified.
Thanks.