Skip to content

Instantly share code, notes, and snippets.

@gahntpo
Last active June 19, 2020 14:31
Show Gist options
  • Save gahntpo/64532dfc10831a7e8722581bbdde2dbd to your computer and use it in GitHub Desktop.
Save gahntpo/64532dfc10831a7e8722581bbdde2dbd to your computer and use it in GitHub Desktop.
simple example for VStack
import SwiftUI
struct StackExample: View {
var body: some View {
VStack {
Text("first item")
Text("second item")
Text("third item")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment