private async void OnPostEventsAttachMediaTotheNewPostOffer(object sender, AttachExternalMediaToNewPostArgs e)
        {
            try {
                await ActionBarViewModel.InitializeAsync(e);

                await NavigationService.NavigateToAsync <MainAppViewModel>();
            }
            catch (Exception exc) {
                Crashes.TrackError(exc);

                await DialogService.ToastAsync(_ATTACH_EXTERNAL_MEDIA_TO_NEW_POST_WARNING);
            }
        }
Exemple #2
0
 public void AttachMediaTotheNewPostOfferInvoke(object sender, AttachExternalMediaToNewPostArgs args) => AttachMediaTotheNewPostOffer(sender, args);