Reputation: 1065
For SwiftUI
.fontColor... no longer works.
.fontColor
Any thoughts on how to change the color of the text(not the background)?
Upvotes: 0
Views: 86
Reputation: 54426
You can try:
Text("example").foregroundColor(.red)
Upvotes: 2