I was going this tutorial:
https://developer.apple.com/tutorials/swiftui/building-lists-and-navigation
I got to the Generating Previews section:
It appears the code in Step 3 is broken. In particular Line 18 of LandmarkList.swift.
ForEach(["iPhone SE", "iPhone XS Max"], id: \.self) { deviceName in LandmarkList()XCode complains about id: \.self
"Extra argument 'id' in call"
Does anyone know why this is broken in their completed code? Thanks in advance.