public FotoSelecionadaView(FotosSelecionadas img) { InitializeComponent(); fotoVM = new FotoSelecionadaViewModel(); this.BindingContext = fotoVM; fotoVM.Foto = img.FotosObtidas; }
public async void AbrirFotoSelecionada(FotosSelecionadas img) { await PopupNavigation.Instance.PushAsync(new FotoSelecionadaView(img)); }