How to handle zooming with page view builder in flutter?
I’m working on an app that I need to implement zoom functionality with page swiping, in my case I need to make the zoom above the entire page view builder rather than on individual pages, similar to how the photo_view package works.
Is it possible for a PageView.builder to have a dynamic width on each page?
I’m making an AirBnb-style options selector, I already have the desired effect when I scroll, but I can’t get each element to have a dynamic size. By setting the viewportFraction: 0.26
I end up with something similar to what I want, but it is not presentable.
Any recommendation?