From 6bb40f2b1c0e7f84ebedb8ae9f1b4caef6f065fd Mon Sep 17 00:00:00 2001 From: Trey t Date: Tue, 15 Mar 2022 14:08:23 -0500 Subject: [PATCH] separate test only settings --- Shared/views/SettingsView/SettingsView.swift | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Shared/views/SettingsView/SettingsView.swift b/Shared/views/SettingsView/SettingsView.swift index d66106a..4e03023 100644 --- a/Shared/views/SettingsView/SettingsView.swift +++ b/Shared/views/SettingsView/SettingsView.swift @@ -34,14 +34,15 @@ struct SettingsView: View { closeButtonView .padding() - cloudKitEnable +// cloudKitEnable canDelete showOnboardingButton - whyBackgroundMode specialThanksCell } Group { + Divider() + Text("Test builds only") addTestDataCell clearDB randomIcons @@ -52,6 +53,7 @@ struct SettingsView: View { exportData importData + Divider() } Spacer() @@ -307,6 +309,7 @@ struct SettingsView: View { EventLogger.log(event: "export_data", withData: ["title": "default"]) }, label: { Text("Export") + .foregroundColor(textColor) }) .padding() } @@ -322,6 +325,7 @@ struct SettingsView: View { EventLogger.log(event: "import_data", withData: ["title": "default"]) }, label: { Text("Import") + .foregroundColor(textColor) }) .padding() }