Skip to content

Instantly share code, notes, and snippets.

@alyssoncm
Created September 18, 2019 17:23
Show Gist options
  • Save alyssoncm/f5bdbd1687c75a2ca32c7feb43b7fb9a to your computer and use it in GitHub Desktop.
Save alyssoncm/f5bdbd1687c75a2ca32c7feb43b7fb9a to your computer and use it in GitHub Desktop.
vstack2
struct ProfileView: View {
var body: some View {
GeometryReader { geometry in
VStack(alignment: .leading){
HStack{
Text("username")
.foregroundColor(lightBlueColor)
.fontWeight(.semibold)
.padding(.leading, 10)
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment