`view` Building
This release renames the contentView
property to view
, and more importantly: makes it a @ViewBuilder
. This makes the simple flow even easier:
class HomePage: ViewController {
var view : some View {
Text("Welcome Home!")
.font(.title)
}
}
Even less boilerplate and ViewControllerView
is not really needed anymore.