I want to make a horizontal stack of images. Unfortunately I am not able to slide to see full images.
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)
            }
        }
    }
}

 
    