slight modifications

This commit is contained in:
breadone 2024-07-09 17:58:24 +12:00
parent 6ec348841c
commit ccdf7db12e
No known key found for this signature in database
3 changed files with 7 additions and 4 deletions

View File

@ -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;

View File

@ -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)
}

View File

@ -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! 🇳🇿") }
}
}