Does not take me parameters to the other screen

I’m trying to pass two parameters (name, email) from a login with good facebook login if it is working but when you go to the next screen where I show the data I do not get anything, maybe I’m having a bad time or reading them in The other page I read them wrong, I really do not know, I hope they can help me:

My code Home:

export class HomePage {

  registroCPage = RegistroCPage;
  registroPPage = RegistroPPage;
  registroNPage = RegistroNPage;

  constructor(
    private facebook: Facebook,
    public navCtrl: NavController,
    public nativeStorage: NativeStorage
  ) {

  }

  loginFacebook() {
    this.facebook.login(['public_profile', 'email'])
      .then(rta => {
        console.log(rta.status);
        if (rta.status == 'connected') {
          this.getInfo();
        };
      })
      .catch(error => {
        console.error(error);
      });
  }

  getInfo() {
    let nav = this.navCtrl;
    let env = this;
    this.facebook.api('/me?fields=id,name,email,first_name,picture,last_name,gender', ['public_profile', 'email'])
      .then(function (user) {
        env.nativeStorage.setItem('user',
          {
            name: user.name,
            email: user.email
          })
          .then(function () {
            nav.push(RegistroNPage);
          }, function (error) {
            console.log(error);
          })
      })
      .catch(error => {
        console.error(error);
      });
  }
}

My code PostLogin:

export class RegistroNPage {

    user: any;
    userReady: boolean = false;

    constructor(
        public navCtrl: NavController,
        public fb: Facebook,
        public nativeStorage: NativeStorage) {

    }

    ionViewCanEnter() {
        let env = this;
        this.nativeStorage.getItem('user')
            .then(function (data) {
                env.user = {
                    name: data.name,
                    email: data.email
                };
                env.userReady = true;
            }, function (error) {
                console.log(error);
            });
    }

    doFbLogout() {
        var nav = this.navCtrl;
        let env = this;
        this.fb.logout()
            .then(function (response) {
                //user logged out so we will remove him from the NativeStorage
                env.nativeStorage.remove('user');
                nav.push(HomePage);
            }, function (error) {
                console.log(error);
            });
    }

}

HTML code PostLogin:

<ion-content padding class="body" align="center">
    <img src="../../assets/logito.png">
    <br>
    <br>
    <ion-list *ngIf='userReady'>
        <ion-item>
            <ion-label>
                <ion-icon name="person"></ion-icon>
            </ion-label>
            <ion-input clearInput type="text" placeholder="Nombres">{{user.name}}
            </ion-input>{{user.name}}
        </ion-item>
        <ion-item>
            <ion-label>
                <ion-icon name="mail"></ion-icon>
            </ion-label>
            <ion-input clearInput type="text" placeholder="Email">{{user.email}}
            </ion-input>{{user.email}}
        </ion-item>
        <ion-item>
            <ion-label>
                <ion-icon name="call"></ion-icon>
            </ion-label>
            <ion-input clearInput type="text" placeholder="Teléfono">
            </ion-input>
        </ion-item>
    </ion-list>
    <button ion-button item-end round full icon-start color="dark" class="botones">
        <ion-icon name='checkmark-circle-outline'></ion-icon>
        registar
      </button>
</ion-content>

What is this? Ionic Native?

I’m guided by this post

import { Facebook } from ‘@ionic-native/facebook’;

So yes, Ionic Native. I changed the post category to match.

I hope you can help me