update text to use user chosen text color

This commit is contained in:
Trey t
2022-03-06 13:38:47 -06:00
parent 7692f455c8
commit c25fc69de2
5 changed files with 16 additions and 10 deletions

View File

@@ -127,6 +127,8 @@ struct CustomizeView: View {
.stroke(Color(UIColor.systemGray), style: StrokeStyle(lineWidth: 2))
)
Text(aTheme.title)
.foregroundColor(textColor)
.font(.body)
}
})
.contentShape(Rectangle())
@@ -179,6 +181,7 @@ struct CustomizeView: View {
.cornerRadius(10)
Text("[How to add widget](https://support.apple.com/guide/iphone/add-widgets-iphb8f1bf206/ios)")
.accentColor(textColor)
.padding(.bottom)
}
}