Post

Replies

Boosts

Views

Activity

Reply to SwiftUI Text Alignment Issue with Date and WidgetKit
I am having the same problem. Any time I use style: .relative it left justifies the text. Have you found a solution? EDIT: I randomly stumbled upon a solution. Using a Stack with                     .multilineTextAlignment(.center) seems to work for some reason. HStack(alignment: .center, spacing:0) { Text(mostRecentObsDate, style: .relative) 	 .multilineTextAlignment(.center) }
Oct ’20