Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 410 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 410 Bytes

Layout and Geometry

How layout works in SwiftUI

  1. A parent view proposes a size for its child.
  2. Based on that information, the child then chooses its own size and the parent must respect that choice.
  3. The parent then positions the child in its coordinate space.

Links that help