Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. struct UserInfoView : View {
  2. var body: some View {
  3. VStack(alignment: .leading) {
  4. Spacer()
  5. Text("Kaori Miyazono, 30")
  6. .font(.title)
  7. .fontWeight(.regular)
  8. .color(.white)
  9. Text("Musician")
  10. .font(.system(size: 17))
  11. .fontWeight(.light)
  12. .color(.white)
  13. }
  14. .padding()
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement