private void ProcessRecentGifs()
        {
            var recent = _stickersService.GetRecentGifs();

            Execute.BeginOnUIThread(() =>
            {
                SavedGifs.ReplaceWith(recent);
            });
        }
        private void ProcessRecentGifs()
        {
            var recent = _stickersService.GetRecentGifs();

            BeginOnUIThread(() =>
            {
                SavedGifs.ReplaceWith(MosaicMedia.Calculate(recent));
            });
        }
Exemple #3
0
 public void Handle(UpdateSavedAnimations update)
 {
     ProtoService.Send(new GetSavedAnimations(), result =>
     {
         if (result is Animations animation)
         {
             BeginOnUIThread(() => SavedGifs.ReplaceWith(MosaicMedia.Calculate(animation.AnimationsValue.ToList())));
         }
     });
 }