Skip to content

Commit

Permalink
chore: add phoneNumber field to example display
Browse files Browse the repository at this point in the history
  • Loading branch information
EnesKaraosman committed Apr 15, 2024
1 parent d45689c commit 55a0f23
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Example/Example/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ struct ContentView: View {

VStack(alignment: .leading) {
Text(developer.name)
Text(developer.phoneNumber)
.font(.footnote)
.foregroundStyle(.brown)
Text(developer.email)
.font(.footnote)
.foregroundStyle(.gray)
Expand Down Expand Up @@ -81,6 +84,9 @@ extension ContentView {
@Lorem(.string(.email))
let email: String

@Lorem(.string(.phoneNumber))
let phoneNumber: String

@Lorem(.url(.image))
let imageURL: URL

Expand Down

0 comments on commit 55a0f23

Please sign in to comment.