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

View File

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