Disable take photo option on macOS

This commit is contained in:
Thomas Ricouard 2023-04-04 07:43:51 +02:00
parent 9ba18a8ca3
commit 573497ed52
1 changed files with 6 additions and 4 deletions

View File

@ -35,10 +35,12 @@ struct StatusEditorAccessoryView: View {
} label: {
Label("status.editor.photo-library", systemImage: "photo")
}
Button {
isCameraPickerPresented = true
} label: {
Label("status.editor.camera-picker", systemImage: "camera")
if !ProcessInfo.processInfo.isiOSAppOnMac {
Button {
isCameraPickerPresented = true
} label: {
Label("status.editor.camera-picker", systemImage: "camera")
}
}
Button {
isFileImporterPresented = true