Add support section to settings view with link to help forum

This commit is contained in:
Angelo Stavrow 2020-09-16 11:34:45 -04:00
parent 0cbac1bdb5
commit 14dd75e410
No known key found for this signature in database
GPG Key ID: 1A49C7064E060EEE

View File

@ -13,6 +13,13 @@ struct SettingsView: View {
Section(header: Text("Appearance")) {
PreferencesView(preferences: model.preferences)
}
Section(header: Text("Support")) {
HStack {
Spacer()
Link("Visit Help Forum", destination: model.helpURL)
Spacer()
}
}
}
}
// .preferredColorScheme(preferences.selectedColorScheme) // See PreferencesModel for info.