这是我的代码:
struct ContentView: View {
var body: some View {
ScrollView {
Image(systemName: "rectangle.fill")
.resizable()
.aspectRatio(contentMode: .fit)
Spacer()
}
}
当我向下滚动拖动图像时,我的视图上方有一个空白,我想知道如何避免这种情况,或者如何在容纳额外空间的同时使图像模糊。