Flickable probably isn’t the best way to implement a next page style flick, a ListView with snapMode: ListView.SnapOneItem
and boundsBehavior: Flickable.StopAtBounds;
set may be better suited.
That would probably introduce some propagate issues with both components fighting for the touch event, it can be a pain that way.