Example #1
0
 public async void DisplayImage(object sender, ItemTappedEventArgs e)
 {
     HistoryUpdate h = (HistoryUpdate)e.Item;
     await Rg.Plugins.Popup.Services.PopupNavigation.Instance.PushAsync(
         new ImageHistory(h));
 }
Example #2
0
 public Task Publish(HistoryUpdate update, CancellationToken cancellationToken)
 {
     return(_repository.Update(update, cancellationToken));
 }
Example #3
0
 public ImageHistory(HistoryUpdate historyUpdate)
 {
     InitializeComponent();
     Xamarin.Forms.ImageSource image = ImageSource.FromFile(historyUpdate.address);
     PhotoImage.Source = image;
 }