private async void btnEscudo_Clicked(object sender, EventArgs e) { var escudo = await ServicioImagenes.SeleccionarImagen(); Equipo.Escudo = escudo.Path; imgEscudo.Source = ImageSource.FromFile(escudo.Path); }
private async void btnFoto_Clicked(object sender, EventArgs e) { var foto = await ServicioImagenes.SeleccionarImagen(); Jugador.Foto = foto.Path; imgFoto.Source = ImageSource.FromFile(foto.Path); }
async void btnFoto_Clicked(object sender, EventArgs e) { var usarCamara = ((Button)sender).Text.Contains("cámara"); var file = await ServicioImagenes.TomarFoto(usarCamara); imgFoto.Source = ImageSource.FromStream(() => { var stream = file.GetStream(); streamCopy = new MemoryStream(); stream.CopyTo(streamCopy); stream.Seek(0, SeekOrigin.Begin); file.Dispose(); return(stream); }); }