Creating this topic to track the updates for SwiftUI by Tutorials . Some of the apis do not work with the latest Xcode and Swift/SwiftUI versions. Example: Ch 6, page 130 .border(Color.gray, width: 1)
does not work anymore and to apply border we may have to use some thing like this
.overlay( RoundedRectangle(cornerRadius: 20) .stroke(Color.purple, lineWidth: 5) )
Is there any tentative ETA for the latest version of the book?