Hi there I have the following problem,
I want to make a PageView where Element sort of overlap from Page to Page.
(I think there are two ways to make that happen: overlap the pages themselves, overlap the children from one page on another page)
So far I can make a child of a Page overlap its parent, however when the Page leaves the screen its overlapping children are no longer drawn on the screen.
[The page offscreen does not render its children. How can I make that happen?] (To make the overlap happen so far I used Transform.translate)
How can I make this overlap happen and ensure that the Elements are built?

The simple workaround to achieve this is by:
MediaQuery.of(context).size.widthRowRowwithSingleChildScrollViewand set its:scrollDirectiontoAxis.horizontalphysicstoPageScrollPhysics()And this is the example code to demonstrate the result:
*the code above is runnable in dartpad
And this is the demo result:
Hopefully it can solve your problem, Thanks