Exemple #1
0
        /// <summary>
        /// Fingerprint authorization succeeded event handler
        /// </summary>
        public async void OnAuthenticationSucceeded()
        {
            RevealProgressBar();
            SecurityProvider.FingerprintAuthenticationSucceeded();
            await Task.Run(() => SecurityProvider.LoadNotes());

            ActivityOptions options = ActivityOptions.MakeSceneTransitionAnimation(this);
            Intent          intent  = new Intent(this, typeof(MainPageActivity));

            StartActivity(intent, options.ToBundle());
        }