Exemplo n.º 1
0
        void BtnLogin_Click(object sender, System.EventArgs e)
        {
            var response = DataService.Login(emailInput.Text, passwordInput.Text);

            if (response.IsSuccessStatusCode)
            {
                StartActivity(typeof(MainActivity));
            }
        }
Exemplo n.º 2
0
 void BtnLogin_Click(object sender, System.EventArgs e)
 {
     DataService.Login(InputEmailLoginForm.Text, InputPasswordLoginForm.Text);
 }