I've got an array of image URLs (all from storage, not internet). How can I show the images themselves? Simplified code:
@Binding var files:[URL]//Array of image URLs taken from an NSOpenPanel instance
Form{
if files.count>0{
Image(files[0].path)//Problem
}
}