Example #1
0
        private async void Delete()
        {
            bool result = await Firestore.Delete(SelectedPost);

            if (result)
            {
                await App.Current.MainPage.Navigation.PopAsync();
            }
        }