mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
SettingsView: Move App Icon to a new, general settings section
This commit is contained in:
@@ -38,7 +38,6 @@ struct SettingsView: View {
|
||||
var body: some View {
|
||||
List {
|
||||
Section {
|
||||
|
||||
if let connectedAppleID = connectedTeams.first {
|
||||
HStack {
|
||||
Text(L10n.SettingsView.ConnectedAppleID.name)
|
||||
@@ -89,6 +88,12 @@ struct SettingsView: View {
|
||||
}
|
||||
}
|
||||
|
||||
Section {
|
||||
NavigationLink(L10n.AppIconsView.title) {
|
||||
AppIconsView()
|
||||
}
|
||||
}
|
||||
|
||||
Section {
|
||||
Toggle(isOn: self.$isBackgroundRefreshEnabled, label: {
|
||||
Text(L10n.SettingsView.backgroundRefresh)
|
||||
@@ -150,10 +155,6 @@ struct SettingsView: View {
|
||||
}
|
||||
|
||||
Section {
|
||||
NavigationLink(L10n.AppIconsView.title) {
|
||||
AppIconsView()
|
||||
}
|
||||
|
||||
NavigationLink("Show Error Log") {
|
||||
ErrorLogView()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user