private void loguearse(object sender, EventArgs e)
        {
            var cws = new CWS();
            var bo  = cws.ComprobarUsuario(user.Text, pass.Text);

            if (bo)
            {
                Navigation.PushAsync(new InfoPage(user.Text));
                Navigation.RemovePage(this);
            }
        }