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 {
|
var body: some View {
|
||||||
List {
|
List {
|
||||||
Section {
|
Section {
|
||||||
|
|
||||||
if let connectedAppleID = connectedTeams.first {
|
if let connectedAppleID = connectedTeams.first {
|
||||||
HStack {
|
HStack {
|
||||||
Text(L10n.SettingsView.ConnectedAppleID.name)
|
Text(L10n.SettingsView.ConnectedAppleID.name)
|
||||||
@@ -89,6 +88,12 @@ struct SettingsView: View {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Section {
|
||||||
|
NavigationLink(L10n.AppIconsView.title) {
|
||||||
|
AppIconsView()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Section {
|
Section {
|
||||||
Toggle(isOn: self.$isBackgroundRefreshEnabled, label: {
|
Toggle(isOn: self.$isBackgroundRefreshEnabled, label: {
|
||||||
Text(L10n.SettingsView.backgroundRefresh)
|
Text(L10n.SettingsView.backgroundRefresh)
|
||||||
@@ -150,10 +155,6 @@ struct SettingsView: View {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Section {
|
Section {
|
||||||
NavigationLink(L10n.AppIconsView.title) {
|
|
||||||
AppIconsView()
|
|
||||||
}
|
|
||||||
|
|
||||||
NavigationLink("Show Error Log") {
|
NavigationLink("Show Error Log") {
|
||||||
ErrorLogView()
|
ErrorLogView()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user