private async void SignUpExecute()
        {
            var signInSheet = new EmailSignUpSheet();
            var success = await ModalSheetUtility.ShowAsync(signInSheet);

            if (!success) return;

            CurtainPrompt.Show("Welcome!");
            CollectionHelper.IdentifyXamarin();

            SubscribeExecute();
        }
Exemplo n.º 2
0
        private async void SignUpExecute()
        {
            var signInSheet = new EmailSignUpSheet();
            var success     = await ModalSheetUtility.ShowAsync(signInSheet);

            if (!success)
            {
                return;
            }

            CurtainPrompt.Show("Welcome!");
            CollectionHelper.IdentifyXamarin();

            SubscribeExecute();
        }