There seems to be a difference to the way iPadOS and macOS handle raw image files (tested with Fujifilm X-T3 uncompressed RAF file - included on the compatible list).
Running the following code (with url set to the file location of the RAF file) on the iPad displays the preview jpeg embedded in the RAF file whereas on the mac the raw data are converted:
AsyncImage(url: item.url) { phase in
if let image = phase.image {
image.resizable().aspectRatio(contentMode: .fit)
} else if phase.error != nil {
Color.red
} else {
Color.blue
}
}
Am I missing something or is this the expected behaviour and is it documented somewhere?