as cranci wanted

This commit is contained in:
Seiike 2025-03-26 22:04:40 +01:00
parent ad96b5fdaa
commit b1ce1e86dd

View file

@ -101,10 +101,7 @@ struct SettingsViewGeneral: View {
.tint(.accentColor)
}
Section(header: Text("Advanced"), footer: Text("Anonymous data is collected to improve the app. No personal information is collected. This can be disabled at any time.")) {
Toggle("Enable Analytics", isOn: $analyticsEnabled)
.tint(.accentColor)
Section(header: Text("Network"), footer: Text("Try between some of the providers in case something is not loading if it should be, as it might be the fault of your ISP.")){
HStack {
Text("DNS service")
Spacer()
@ -123,6 +120,11 @@ struct SettingsViewGeneral: View {
.keyboardType(.numbersAndPunctuation)
}
}
Section(header: Text("Advanced"), footer: Text("Anonymous data is collected to improve the app. No personal information is collected. This can be disabled at any time.")) {
Toggle("Enable Analytics", isOn: $analyticsEnabled)
.tint(.accentColor)
}
}
.navigationTitle("General")
}