From d1a7d0fbc73bc337fb4dd8587caa35164bcdac9a Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Tue, 13 Dec 2022 11:17:18 +0800 Subject: [PATCH] slightly bigger icons --- iOS/Settings/Views/General/SettingsRows.swift | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/iOS/Settings/Views/General/SettingsRows.swift b/iOS/Settings/Views/General/SettingsRows.swift index e025170f5..a0f4c73f3 100644 --- a/iOS/Settings/Views/General/SettingsRows.swift +++ b/iOS/Settings/Views/General/SettingsRows.swift @@ -23,7 +23,7 @@ struct SettingsViewRows { Image("system.settings") .resizable() .aspectRatio(contentMode: .fit) - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) .clipShape(RoundedRectangle(cornerRadius: 6)) } .onTapGesture { @@ -40,7 +40,7 @@ struct SettingsViewRows { } icon: { Image("notifications.sounds") .resizable() - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) .clipShape(RoundedRectangle(cornerRadius: 6)) } } @@ -55,7 +55,7 @@ struct SettingsViewRows { } icon: { Image("app.account") .resizable() - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) .clipShape(RoundedRectangle(cornerRadius: 6)) } } @@ -70,7 +70,7 @@ struct SettingsViewRows { } icon: { Image("app.extension") .resizable() - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) .clipShape(RoundedRectangle(cornerRadius: 6)) } } @@ -89,7 +89,7 @@ struct SettingsViewRows { } icon: { Image("app.import.opml") .resizable() - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) .clipShape(RoundedRectangle(cornerRadius: 6)) } } @@ -108,7 +108,7 @@ struct SettingsViewRows { } icon: { Image("app.export.opml") .resizable() - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) .clipShape(RoundedRectangle(cornerRadius: 6)) } } @@ -186,7 +186,7 @@ struct SettingsViewRows { } icon: { Image("app.appearance") .resizable() - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) .clipShape(RoundedRectangle(cornerRadius: 6)) } } @@ -207,7 +207,7 @@ struct SettingsViewRows { .renderingMode(.template) .foregroundColor(Color(uiColor: .tertiaryLabel)) .aspectRatio(contentMode: .fit) - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) } .onTapGesture { selectedSheet.wrappedValue = sheet @@ -227,7 +227,7 @@ struct SettingsViewRows { .renderingMode(.template) .foregroundColor(Color(uiColor: .tertiaryLabel)) .aspectRatio(contentMode: .fit) - .frame(width: 25.0, height: 25.0) + .frame(width: 30.0, height: 30.0) } } }