示例#1
0
        protected override void OnAppearing()
        {
            base.OnAppearing();

            vm = new VM.OTPVM(CurrentPage: this);

            vm.OnOTPCorrected += OnOTPCorrected;

            BindingContext = vm;
        }
示例#2
0
        protected override void OnAppearing()
        {
            base.OnAppearing();

            vm = new VM.OTPVM(CurrentPage: this);

            vm.OnOTPCorrected += () =>
            {
                Navigation.PushAsync(new IntroSetUpPINPage());
            };

            BindingContext = vm;
        }