Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save azimuthdeveloper/7aca6fc86eb12ca005347ad4dbf453a7 to your computer and use it in GitHub Desktop.
Save azimuthdeveloper/7aca6fc86eb12ca005347ad4dbf453a7 to your computer and use it in GitHub Desktop.
private async void OnSave()
{
Item newItem = new Item()
{
Id = Guid.NewGuid().ToString(),
Text = Text,
Description = Description
};
await DataStore.AddItemAsync(newItem);
// This will pop the current page off the navigation stack
await Shell.Current.GoToAsync("..");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment