diff --git a/JustScanIt.xcodeproj/project.pbxproj b/JustScanIt.xcodeproj/project.pbxproj index 2161308..a062211 100644 --- a/JustScanIt.xcodeproj/project.pbxproj +++ b/JustScanIt.xcodeproj/project.pbxproj @@ -320,6 +320,7 @@ ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_CFBundleDisplayName = "Just Scan It"; + INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; INFOPLIST_KEY_NSCameraUsageDescription = "Scan documents with the camera."; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; @@ -356,6 +357,7 @@ ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_CFBundleDisplayName = "Just Scan It"; + INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; INFOPLIST_KEY_NSCameraUsageDescription = "Scan documents with the camera."; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; diff --git a/JustScanIt/View/ScanItemView.swift b/JustScanIt/View/ScanItemView.swift index f1534bf..1c15674 100644 --- a/JustScanIt/View/ScanItemView.swift +++ b/JustScanIt/View/ScanItemView.swift @@ -111,8 +111,9 @@ struct ScanItemView: View { } .padding() // .background(Color(red: 0.4, green: 0.6, blue: 0.9, opacity: 0.8)) - .background(Gradient(colors: [bgTopColour, bgBottomColour])) - .clipShape(RoundedRectangle(cornerRadius: 35)) + .background(bgTopColour) +// .background(Gradient(colors: [bgTopColour, bgBottomColour])) + .clipShape(RoundedRectangle(cornerRadius: 28)) .padding(.horizontal, 12) } diff --git a/JustScanIt/View/SettingsView.swift b/JustScanIt/View/SettingsView.swift index 48726be..7653bd5 100644 --- a/JustScanIt/View/SettingsView.swift +++ b/JustScanIt/View/SettingsView.swift @@ -31,14 +31,14 @@ struct SettingsView: View { Section { Toggle("Launch Camera on Startup", isOn: $autoLaunchCamera) Toggle("Auto-Copy on Save", isOn: $autoCopy) - } header: { Text("General") } + } header: { Text("General") } footer: { Text("Due to iOS limitations, only the first photo in a capture will be copied.") } } var aboutApp: some View { Section { LabeledContent("Version", value: "1.0.0") - } header: { Text("About") } footer: { Text("Made by bread!") } + } header: { Text("About") } footer: { Text("Made by bread! 🇳🇿") } } }