remove hardcoded colour from Image

This commit is contained in:
Valentin Vila 2024-03-21 12:57:16 -03:00
parent 5658bd928e
commit b69a718b22

View File

@ -105,7 +105,7 @@ struct RootView: View {
.safeAreaInset(edge: .bottom) {
Link(destination: URL(string: "donations.url".localized)!) {
HStack {
Image(systemName: "heart").foregroundColor(.blue)
Image(systemName: "heart")
Text("enum.navigation_item.donations".localized)
.foregroundColor(.foregroundColor(.systemTextColor))
}