我正在显示一List组图像,效果很好。它们都在列表中居中,但是当我添加maxHeight图像时,图像会移动到前导而不是中心,所以我将对齐设置为.center,但这似乎没有任何作用。
NavigationView {
List(words, id: \.self) { word in
NavigationLink(destination: testView(word: word)) {
Image(word.imageName)
.resizable()
.aspectRatio(contentMode: .fit)
.frame( maxHeight: 200, alignment: .center )
}
}
}
有没有其他人遇到过这个问题并且知道如何解决它?
谢谢