Notes on Swift UI — WWDC19 talks

Declarative, compositional, sequenced and simple. View structure is defined as a one piece structure— declaratively.

Intends to have your code match your view structure:

A container view is a composition with a closure called “View Builder” that contains multiple sub views. An example of one is the VStack.

--

--