How to make this scrollable view without disturbing the below text which stays there and I can scroll the images one above other.

I want to create a view in which if I scroll images the text below stays and the images also come over another how to make it?

VStack {
   ScrollView {
      //All of the UI content that should scroll
   }
   Pager { ... }
   Text("The Content outside of the ScrollView stays fixed")
}
How to make this scrollable view without disturbing the below text which stays there and I can scroll the images one above other.
 
 
Q