https://www.hackingwithswift.com/100/swiftui/68
MapKit, Biometric authentication, Secure data writing, Comparable custom types, Documents directory
From Hacking with Swift:
- Our + button is rather hard to tap. Try moving all its modifiers to the image inside the button – what difference does it make, and can you think why?
- Having a complex if condition in the middle of ContentView isn’t easy to read – can you rewrite it so that the MapView, Circle, and Button are part of their own view? This might take more work than you think!
- Our app silently fails when errors occur during biometric authentication. Add code to show those errors in an alert, but be careful: you can only add one alert() modifier to each view.