1

我想制作一个水平堆叠的图像。不幸的是,我无法滑动查看完整图像。


struct ContentView: View {
    var body: some View {
        NavigationView {
                List {

                    ScrollView {
                        VStack{
                            Text("Images").font(.title)
                        HStack {

                            Image("hike")
                            Image("hike")
                            Image("hike")
                            Image("hike")


                        }
                        }

                }.frame(height: 200)
            }
        }
    }
}

在此处输入图像描述

4

1 回答 1

1

你的观点有几个问题。

您的内容周围有一个列表 - 它会导致问题,因为列表垂直滚动,而我假设您希望您的图像水平滚动。

接下来是您可能不希望您的标题与图像一起滚动 - 它需要超出滚动视图。

最后但同样重要的是,您需要调整图像大小并设置它们的纵横比,以便缩小它们以适应分配的空间。

尝试这个:

struct ContentView: View {

    var body: some View {
        NavigationView {
            VStack{
                Text("Images").font(.title)
                ScrollView(.horizontal) {
                    HStack {
                        Image("hike")
                            .resizable()
                            .aspectRatio(contentMode: .fit)
                        Image("hike")
                            .resizable()
                            .aspectRatio(contentMode: .fit)
                        Image("hike")
                            .resizable()
                            .aspectRatio(contentMode: .fit)
                        Image("hike")
                            .resizable()
                            .aspectRatio(contentMode: .fit)
                    } .frame(height: 200)
                    Spacer()
                }
            }
        }
    }
}
于 2019-09-19T19:09:34.253 回答