peterfriese / MakeItSo

This is the source code for Make It So, the sample app accompanying my blog post "Replicating the iOS Reminders App Using SwiftUI and Firebase"

Home Page:https://twitter.com/peterfriese/status/1453467058302291975

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tutorial: Discardable edits

peterfriese opened this issue · comments

  • In the previous step, any changes will be reflected on the data model immediately. This is because we’re using a binding.
  • Comparing this behaviour with the original app, we notice the original app allows users to discard their changes.
  • Let’s look at how to implement this
  1. Adapt my blog post