Hi, why doesn't this view scroll? The image is taller than the screen.
Thanks,
Spiff
Code Block struct ImageScroll: View { @State var uiImage: UIImage var body: some View { ScrollView { Image(uiImage: uiImage) .focusable() } .focusable() } }
Thanks,
Spiff