SwiftUI Views
February 18, 2021
Text(...)used to display a labelVStack{ }used to show views in a vertical orientationHStack{ }used to show views in a horizontal orientationToggle(...)flip a boolean switchNavigationLink(destination: ...)Wrap a view with this to make it clickableScrollView(...)wrap aVStackin this to make it scrollableSpacer()fills up available space to move viewsNavigationView { }Wrapper arounds views that will have a navigation header Write Up
