From edf6802e85eac45fa0d03443ec572d3be7633f15 Mon Sep 17 00:00:00 2001 From: Trey t Date: Fri, 11 Mar 2022 11:50:39 -0600 Subject: [PATCH] closed #10 - Creative Commons page in app --- Shared/views/SettingsView/SettingsView.swift | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Shared/views/SettingsView/SettingsView.swift b/Shared/views/SettingsView/SettingsView.swift index ec43061..9954264 100644 --- a/Shared/views/SettingsView/SettingsView.swift +++ b/Shared/views/SettingsView/SettingsView.swift @@ -151,9 +151,16 @@ struct SettingsView: View { .padding() if showSpecialThanks { - Text(String(localized: "settings_view_special_thanks_to_body")) - .foregroundColor(textColor) - .padding() + Divider() + Link("Font Awesome", destination: URL(string: "https://fontawesome.com")!) + .accentColor(textColor) + .padding(.bottom) + + Divider() + + Link("Charts", destination: URL(string: "https://github.com/danielgindi/Charts")!) + .accentColor(textColor) + .padding(.bottom) } } }