In the following scenario I can see all three pages (ImageView) at once and the pages even slide behind "MyLabel".
Is there a way to stop that from happening?
HStack{
Text("MyLabel: ")
HPageView(selectedPage: $pageIndex) {
Image1View()
Image2View()
Image3View()
}
}