add explanatory footer to Developer Mode setting view

Signed-off-by: Bryan Montz <bryanmontz@me.com>
Reviewed-by: William Casarin <jb55@jb55.com>
This commit is contained in:
Bryan Montz
2023-07-08 06:56:07 -05:00
committed by William Casarin
parent 0c736a18a9
commit 81b69bc2ea

View File

@@ -13,7 +13,7 @@ struct DeveloperSettingsView: View {
var body: some View {
Form {
Section {
Section(footer: Text(NSLocalizedString("Developer Mode enables features and options that may help developers diagnose issues and improve this app. Most users will not need Developer Mode.", comment: "Section header for Developer Settings view"))) {
Toggle(NSLocalizedString("Developer Mode", comment: "Setting to enable developer mode"), isOn: $settings.developer_mode)
.toggleStyle(.switch)
}