TableViews vs. SwiftUI Lists

I’ve been implementing TableViews this whole time as they were covered in several of the lessons. However, I watched a recent lesson (Recipe List App), where SwiftUI Lists were covered.

How do you decide between choosing a TableView vs. a SwiftUI List? They seem to accomplish the same thing?

A UIKit (Storyboard) TableView is effectively the same layout as a SwiftUI “List”. It’s just that building a List in SwiftUI only takes a few lines of code.