Beispiel #1
0
        private async void saveButton_Clicked(object sender, EventArgs e)
        {
            try
            {
                await _model.Save();

                await Application.Current.MainPage.DisplayAlert("Info", "User successfully updated", "Ok");
            }
            catch (Exception ex)
            {
                await Application.Current.MainPage.DisplayAlert("Error", ex.Message, "OK");
            }
        }