Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 1.05 KB

File metadata and controls

16 lines (13 loc) · 1.05 KB

Implementing detail and edit forms

This example is part of a recipe from the book published by Packt:

.NET MAUI Cookbook: Build a full-featured app swiftly with MVVM, CRUD, AI, authentication, real-time updates, and more

In the book, this recipe covers:

  • Building a complete CRUD flow.
  • Displaying a detail form when tapping on an item.
  • Starting the edit process on edit button tap.
  • Managing item edits so unsaved changes aren’t reflected in the CollectionView when editing is canceled.
  • A communication pattern between the main, detail, and editing forms, fully compliant with the MVVM pattern.
  • Reusing the same form for both creating and editing items, and customizing its appearance with a DataTrigger.

Note: This example may not include all the points mentioned above. For complete details, please refer to the corresponding recipe in the book.

Output

CRUD Flow